- 2
How to I Translate the following statements below to SQL language?
1- Show the list of videoNo which are returned from table rentalagreement 2- Display everything about those videos which have the key word “Never” in their titles
6 odpowiedzi
+ 1
Something like this.......
1. select videoNo from rentalagreement;
2. select * from rentalagreement where title like '%Never%';
+ 1
Let me see your query so I can test it and suggest you something ...
+ 1
Ipang
This is my Assignment
And I'm beginner in sql
+ 1
Rahima Mirzad
Would you mind if I suggest you to get in the SQL tutorial first? I believe you will find answers to your task requirements as you make your way through the tutorial 👍
0
Quantum
What is "like" in your answer 🤔