Computer Science, asked by tavleen20, 11 months ago

what is importance of select clause in SQL

Answers

Answered by charlie1505
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