If you’ve ever used the VALUES
clause as a stand alone statement, you may have noticed that SQLite provides default column names for the results. SQLite conveniently names them column1
, column2
, and so on.
However as convenient as this is, you might want to provide names that are more meaningful.
Fortunately there’s an easy way to do that.
Continue reading