Select Page

Online Compiler and Code Executor for SQL





SQL Online Compiler

You can run and write your SQL code using The Research Scientist Pod’s free SQL online compiler.

Simple SQL Example

Here is a simple SQL example of creating a table and inserting an entry.

CREATE TABLE Person (
    PersonID int,
    LastName varchar(255),
    FirstName varchar(255),
    Address varchar(255),
    City varchar(255)
);

INSERT INTO Person VALUES (1, 'Tony', 'Soprano', '14 Aspen Drive, North Caldwell, NJ 07006', 'USA');

SELECT * FROM Person;