DBA > Job Interview Questions > Microsoft SQL Server Database Administrator Exam

What is the meaning of the following T-SQL comma

More DBA job interview questions and answers at http://dba.fyicenter.com/Interview-Questions/

(Continued from previous question...)

What is the meaning of the following T-SQL command: SELECT TOP 10 * FROM user WHERE last_name = 'Johnson'

"SELECT TOP 10 * FROM user WHERE last_name = 'Johnson'" will return the first 10 records that have "Johnson" as the value in the "last_name" column from the "user" table.

(Continued on next question...)

Other Job Interview Questions