0 votes
in SQLite by
How would you retrieve data from SQlite table?

1 Answer

0 votes
by

The SELECT command is used to retrieve data from SQLite table. If you want to retrieve all columns from the table use SELECT * otherwise use the specific column's name separated by commas.

Syntax:

SELECT * FROM table_name;     

Or   

SELECT column1, column2, columnN FROM table_name;  

...