Skip to Content
MySQL Online Editor - Paul's Server
Results / Output
Ready to run SQL queries.

About MySQL

MySQL is an open-source relational database management system. It uses Structure Query Language (SQL) to manage and manipulate data. This editor uses an in-browser database engine to simulate MySQL behavior.

Syntax Help

Fundamentals

  • Select: SELECT * FROM table;
  • Create: CREATE TABLE name (id INT, val STRING);
  • Insert: INSERT INTO table VALUES (1, 'A');

Example:

CREATE TABLE Users (id INT, name STRING);
INSERT INTO Users VALUES (1, 'Alice');
INSERT INTO Users VALUES (2, 'Bob');
SELECT * FROM Users;

Note

This editor runs completely in your browser. Data is transient and will be lost on reload unless explicitly saved or cached.