SELECT
--=========================================[SELECT]=====================================================================
--=========================================[SELECT]=====================================================================
--The SQL SELECT statement is used to select data from a SQL database table.
--This is usually the very first SQL command every SQL newbie learns and this
--is because the SELECT SQL statement is one of the most used SQL commands.
--Select table--
SELECT * FROM Person.Contact
--Select Coloumns of table--
SELECT FirstName,MiddleName FROM Person.Contact
No comments:
Post a Comment