|
|
|
|
|
by mekster
2341 days ago
|
|
I understand how clarity may provide the programmer's intention of the query but I'd rather just pick all, so that change in code below doesn't suddenly break because you didn't sync the columns to be fetched. > - Predictability; consuming program receives data in the same order, every time For any joined table, you can specify table name for each '*' or add an alias last to keep the column you need instead of writing it all. Seems specifying each column name isn't in any way crtitically bad when you can't select all but a column in SQL, which is a deficiency in the language. |
|