Google News
logo
SQLite - Interview Questions
How would you retrieve data from SQLite table?
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;

 

Advertisement