DQL Command | Data Query Language | SQL Command in DQL Command published on April 21, 2019 leave a reply DQL Command DQL command is used to retrieve data from database. DQL command has one type : SELECT SELECT Command SELECT command is used to find information from one or more tables, and return the query as a result set. Syntax : 1) SELECT * FROM table_name; 2) SELECT column_name1, column_name2 FROM table_name; Using with * sign we can retrieve all data from database. Also we can select particular data from database. Example : 1) SELECT * FROM Customer01; 2) SELECT C_Id, C_FirstName FROM Cutomer01; * * * * * * * * * * * * * * * * * In Easy Language Select command used to retrieve data from database. Tweet Share Share Share Previous Post [Latest] SQL Server 2019 New Features | SQL Server Developer Edition Next Post ROLLBACK | Rollback In SQL Server post written by: Anonymous Related PostsSQL Commands | DDL, DML, TCL, DCL, DQL SQL Commands: SQL Command !-- Image Credit :- Gfycat -- SQL commands are guidelines, coded into SQL proc… Continue ReadingDQL Command | Data Query Language | SQL Command DQL Command DQL command is used to retrieve data from database. DQL command has one type : SELECT SELECT Command SELE… Continue ReadingSQL SELECT Statement | DQL Command The SQL SELECT Statement The SELECT statement is used to select data from a database. The data returned is stored in a re… Continue Reading
0 Comments: