Right answer is (b) SELECT Username, Password FROM Users
The best explanation: 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.