What is a query? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is a query?

18th Oct 2016, 10:40 PM
violet
3 Answers
+ 4
It's how SQL interact with database structure. you can do 4 main operation: create, delete, insert and update. SQL queries are near to english language. for example consider this very simple query: "SELECT * FROM user WHERE age > 18" assuming that an user table exists and this table has a age column( field), this query will return all the users with an age of 18+😊
22nd Oct 2016, 7:46 PM
babakm
babakm - avatar
+ 2
A query is a question in sql format
19th Oct 2016, 7:04 PM
Alex
0
It is English like language written to interact with database.
24th Oct 2016, 11:07 AM
rinkesh golwala
rinkesh golwala - avatar