Sunday, March 12, 2023

SELECT Query - MSSQL Server


Sequence Of  SELECT Statement.

[SELECT ] [Column name] [FROM  [Table Name


SELECT Query with One Column. 



SELECT Query with multi  Columns.
*Columns Separate with ' , ' Symbol
     
Example :

                SELEC  Stud_Id , Stud_Name FROM Stud_Details
 



SELECT Query with all Columns With ' * ' Mark

 * No Need To Write All Column Names.
   
    Example :
                  SELECT  * FROM  Stud_Details;




* If  you have question with this  please comment , I will reply to you , Thank you..


No comments:

Post a Comment

SQL INSERT QUERY

This Command use for Insert New Record in to Table . INSERT INTO Syntax. INSERT INTO  < Table name > ( Table Column names ) values (...