Select from following answers:- Displays Users with Profession as 'engineer' with PKUserId > 12 as well as the users with PKUserId of 1.

- Displays Users with Profession as 'engineer' with PKUserId > 12 only.
- Displays Users with Profession as 'engineer' with PKUserId of 1 only.
- None of the above.
- All Above
first condition is Profession = 'Engineer'
second one is (PKUserId > 12 OR PKUserId = 1 ) means the users whose IDs are >12 ( ie 13, 14, ....) and ID = 1
The users which satisfy the both conditions will be displayed to user
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator