SQL SELECT DATABASE
SELECT DATABASE is used to retrive data from database.
SQL Select Database Syntax
//select all the fields available in the table SELECT * FROM table_name; //olumn1, column2, ... are the field names of the table you want to select data from SELECT column1, column2, ... FROM table_name;
SQL Select All From Database Example
SELECT * FROM Customers;