Please do not take this question unless you are fluent in SQ
Please do not take this question unless you are fluent in SQL Server.
Which of the following is NOT a valid WHERE clause?
A. WHERE CompanyName Like \'Google%\'
B. WHERE CompanyName Starts With \'Google\'
C. WHERE CompanyName = \'Google\'
D. WHERE CompanyName <> \'Google\'
Solution
B. WHERE CompanyName Starts With \'Google\'
This will not be a valid option in where clause in sql server.
