Which of the SQL statements is correct?

Which of the SQL statements is correct? Correct Answer SELECT Username, Password FROM Users

Correct order of SELECT, FROM and WHERE clause is as follow: SELECT column_name1, column_name2 FROM table_name WHERE condition So, only SELECT Username, Password FROM Users follows the above syntax.

Related Questions

Dynamic SQL Statements in SQL Server can be easily built using ________________