MySQL SQL

MySQL SQL

Learn the SQL statements used to read and change MySQL data.

What is SQL?

SQL is the language used to communicate with a relational database. MySQL supports statements for querying data, changing rows, and defining database objects.

SELECT name, price
FROM products;

SQL keywords are conventionally written in uppercase, while table and column names should follow a consistent naming style.