InterviewSolution
Saved Bookmarks
| 1. |
My Query Does Not Return The Column Name That I Expect. Is This A Bug? |
|
Answer» If the columns of your result set are named by AS CLAUSES, then SQLite is guaranteed to use the identifier to the right of the AS keyword as the column NAME. If the result set does not use an AS clause, then SQLite is FREE to name the column anything it wants. If the columns of your result set are named by AS clauses, then SQLite is guaranteed to use the identifier to the right of the AS keyword as the column name. If the result set does not use an AS clause, then SQLite is free to name the column anything it wants. |
|