The basic syntax of the SELECT statement is as follows −
SELECT column1, column2 .... FROM database_name.table_name;
This "column1", "column2".... are the fields of a table whose values you want to fetch or retrieve.
If you want to fetch all the fields available in the field, then you can use the following syntax
SELECT * FROM database_name.table_name;
Here * means - fetch all the columns form the table
_________________________________________
In this video we have covered.
What is SQL SELECT statement?
How to fetch the data from a database table.
How to write query to get all the columns from a table
How to write query to get specific columns from a table
what does the SQL select statement means.
What is the use of SQL select statement
__________________________________________________________________________________________________
You can follow us on the below social media handles:-
Blog: -
Facebook:-
Instagram: -
LinkedIn: -
Twitter: -
0 Comments