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.SELECT * FROM table_name;
Or
SELECT column1, column2, columnN FROM table_name;