what is importance of select clause in SQL
Answers
Answered by
1
Answer:
The select query used to fetch or retrieve or to access the data from database.
eg-
select * from table_name
in this query, whole table data will be fetched.
select col1, col2, col3.... from table_name
in this query only data of 3 column will be fetched
Similar questions