Computer Science, asked by Tania13, 1 year ago

What are SQL queries????

Answers

Answered by Anonymous
4
it is the language used in the standard database system

Answered by allysia
1

Answer:

SQL queries are the statements that allow user to manipulate with databases' data and their structures as per the need of the user.

Explanation:

Examples:

  • Select * from table_name #returns all the values in the table
  • Update table_name set column_name= new_value where coulum_name=old_value #allows to update table

Similar questions