SQL Online -Compiler
This is a good SQL editor:
https://www.tutorialspoint.com/execute_sql_online.php
DevLorenzo
This is a good SQL editor:
https://www.tutorialspoint.com/execute_sql_online.php
try this online tool, it's free and support multilangs (SQL, C, C++, PHP, Node, Deno, ..etc)
https://www.mycompiler.io/new/sql
1234567891011
-- create a tableCREATE TABLE students ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, gender TEXT NOT NULL);-- insert some valuesINSERT INTO students VALUES (1, 'Ryan', 'M');INSERT INTO students VALUES (2, 'Joanna', 'F');-- fetch some valuesSELECT * FROM students WHERE gender = 'F';
I recomend popSql or online: https://www.tutorialspoint.com/execute_sql_online.php