SQL - Structured Query Language |
SELECT - All Column(s)Asterisk * symbol is used to retrieve all columns and records from a table. An example, the following query is used to displays all columns and records from PRODUCT table. --
Example 19 -- SELECT * FROM Product |
* * * * *