SQL SELECT Query
The SELECT statement is used to select data from a database.
Query
SELECT * FROM TABLE NAME.
Use this query we get All data of Table. And we Want to particular data then use Select Column Name
Example.
SELECT column_name,column_name
FROM table_name;
The SELECT statement is used to select data from a database.
Query
SELECT * FROM TABLE NAME.
Use this query we get All data of Table. And we Want to particular data then use Select Column Name
Example.
SELECT column_name,column_name
FROM table_name;
0 comments :
Post a Comment