

InterviewSolution
Saved Bookmarks
1. |
Write an SQL command to display item names,quantity where item names starting with \'C\'. |
Answer» Select * from where name ="C%"<br>Select names, quantity, from where name like"%_"; | |