Select Statement in Microsoft SQL Server ||Query || SQL||Select Statement
Select Query If you want to select all column from the Table Select Statement 👉 Select * from TableName 👉 (*) Means All TableName ? 👉 Any Table Name ,Which information do you wish to display? If you want to select any particular Column. Select Statement 👉 Select Column1,Column2,Column3 from TableName 👉 Column 1,Column2,Column3 Any Column which is available in the selected Table.