Mist Playground
Home
MySQL Compatibility
GitHub
↗
📝
SQL Editor
Connecting...
-- Welcome to Mist SQL Playground! -- Click "Execute Query" to run SQL commands or use Quick Examples below -- Create a users table CREATE TABLE users ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL, email VARCHAR(255) UNIQUE, age INT ); -- Insert some sample data INSERT INTO users (name, email, age) VALUES ('Alice Johnson', 'alice@example.com', 28), ('Bob Smith', 'bob@example.com', 35); -- Query the data SELECT * FROM users;
▶
Execute Query
Clear
Format SQL
Quick Examples
📝 Create Table
➕ Insert Data
📋 Select All
🔍 WHERE Query
✏️ Update Data
📊 Aggregates
🛒 Orders Table
🛍️ Insert Orders
🔗 JOIN Query
🗑️ Delete Data
📁 Show Tables
📊
Query Results
👋 Welcome to Mist SQL Playground!
Execute a SQL query to see results here. This playground demonstrates Mist's MySQL-compatible syntax and features.
Ready