Home »
MCQs »
Transact-SQL (T-SQL) MCQs
What will be the output of the below LIKE query (1)?
10. What will be the output of the below LIKE query?
WHERE SALARY LIKE '9000%'
- It will find any value that starts with 9000
- It will find any value that ends with 9000
- It will find any value whose range is between 9000
- It will find the value where salary is less than 9000
Answer: A) It will find any value that starts with 9000
Explanation:
It will find any value that starts with 9000.