horso by themebuzz
  • www.datsol.com.au
  • info@datsol.com.au
  • 8:30 AM - 5:00 PM

SQL – SELECT statement

Using the T-SQL select statement is quite simple to retrieve data from your database. This example returns data where the ID is 3.

USE databasename

SELECT ID, FirstName, LastName

FROM tablename

WHERE ID = 3;

Post Comment

Your email address will not be published. Required fields are marked *