Question: A company has the following departments:
Finance, Accounts, Human Resources, Administration
There is a table named Company having a column named Department, and the above values are stored in that column.
What will be the result of the following query?
Select Department from Company where Department < 'Finance'
AThe query will return "Accounts, Human Resource"
BThe query will return "Accounts, Administration ,Human Resource"
CThe query will return "Administration"
DStrings cannot be compared using the < operator
EThe query will return "Accounts, Administration"
Note: Not available