What does the following SQL command output?
SELECT * FROM Projects WHERE ProjectID LIKE “P*”;
- This displays all projects where ProjectID ends with P
- This displays all projects where ProjectID has two characters and the first one is P
- This displays all projects where ProjectID starts with P
- This displays all projects where ProjectID has two characters and the second one is P
Please login or Register to submit your answer