Data Query Language:It is also called as Data Retrieval Language, which is used to fetch the data / get the data from database.In this Language, we have only one command.
1. Select.
select:This command is used to get / fetch / retrieve data from the database.
syntax:SQL>select <required columns> from <Table_Name>
Example:SQL>select sno, sname from student;
syntax:SQL>select * from <Table_Name>
Example:SQL>select * from student;
Add Comment