How to I Translate the following statements below to SQL language? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

14th Sep 2022, 1:43 AM
Rahima Mirzad
Rahima Mirzad - avatar
6 Answers
+ 1
Something like this....... 1. select videoNo from rentalagreement; 2. select * from rentalagreement where title like '%Never%';
14th Sep 2022, 5:54 AM
Jan
Jan - avatar
+ 1
Let me see your query so I can test it and suggest you something ...
14th Sep 2022, 3:26 AM
Ipang
+ 1
Ipang This is my Assignment And I'm beginner in sql
14th Sep 2022, 4:40 AM
Rahima Mirzad
Rahima Mirzad - avatar
+ 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 👍
14th Sep 2022, 4:52 AM
Ipang
0
Quantum What is "like" in your answer 🤔
15th Sep 2022, 3:26 AM
Rahima Mirzad
Rahima Mirzad - avatar