Title: Add New Row To Table
Slug: add_new_row_into_table
Summary: Add New Row To Table in SQL.
Date: 2017-01-16 12:00
Category: SQL
Tags: Basics
Authors: Chris Albon

Note: This tutorial was written using Catherine Devlin's SQL in Jupyter Notebooks library. If you have not using a Jupyter Notebook, you can ignore the two lines of code below and any line containing %%sql. Furthermore, this tutorial uses SQLite's flavor of SQL, your version might have some differences in syntax.

For more, check out Learning SQL by Alan Beaulieu.


In [1]:
# Ignore
%load_ext sql
%sql sqlite://
%config SqlMagic.feedback = False

Create Data


In [2]:
%%sql

-- Create a table of criminals
CREATE TABLE criminals (pid, name, age, sex, city, minor);
INSERT INTO criminals VALUES (412, 'James Smith', 15, 'M', 'Santa Rosa', 1);
INSERT INTO criminals VALUES (901, 'Gordon Ado', 32, 'F', 'San Francisco', 0);


Out[2]:
[]

View Table


In [3]:
%%sql

--  Select all
SELECT *

-- From the criminals table
FROM criminals


Out[3]:
pid name age sex city minor
412 James Smith 15 M Santa Rosa 1
901 Gordon Ado 32 F San Francisco 0

Add New Row


In [4]:
%%sql

-- Add into the table criminals
INSERT INTO criminals 

-- A new row with these values
VALUES (512, 'Bill Byson', 21, 'M', 'Petaluma', 0);


Out[4]:
[]

View Table Again


In [5]:
%%sql

--  Select all
SELECT *

-- From the criminals table
FROM criminals


Out[5]:
pid name age sex city minor
412 James Smith 15 M Santa Rosa 1
901 Gordon Ado 32 F San Francisco 0
512 Bill Byson 21 M Petaluma 0