Description:
The SQL SELECT statement is used to fetch the data from a database table which returns the data in the form of a result table. These result tables are called result-sets.
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: - https://thedatamillennials.blogspot.com/
Facebook:- https://www.facebook.com/The-Data-Millennials-596575371027542/
Instagram: - https://www.instagram.com/the_data_millennials/
LinkedIn: - https://www.linkedin.com/in/data-millennials-6b5a031b3/
Twitter: - https://twitter.com/DataMillennials
Share this link via
Or copy link
























