Given the following SAS data set WORK.EMPDATA:
Which WHERE statement would display observations with Job_Title containing the word “Manager”?
Given the following SAS data set WORK.EMPDATA:
Which WHERE statement would display observations with Job_Title containing the word “Manager”?
To find observations with Job_Title containing the word 'Manager', you should use the SQL 'LIKE' operator with wildcards. The correct syntax for such a query in SAS is 'where Job_Title like '%Manager%';'. This will match any Job_Title that includes 'Manager' anywhere in the string.
Correct Answer is B : where Job_Title like ‘%Manager%’;