MySQL Online Editor
Write, Run & Share SQL queries online for free. Practice MySQL-style SQL right in the browser.
About SQL
SQL (Structured Query Language) is the standard language for managing relational databases.
Example
CREATE TABLE users(id INTEGER, name TEXT); INSERT INTO users VALUES (1,'Alice'),(2,'Bob'); SELECT * FROM users;

