SQL Flashcards
Returning first 10 rows in descinding order of Col_A from a table in SQLite filtered for when Col_A or Col_B are less than zero
SELECT * FROM Table_Name WHERE Col_A <0 OR Col_B <0 ORDER BY Col_A DESC LIMIT 10;
Returning a count of rows in a table
SELECT COUNT(Column_Name) FROM Table_Name;
Returning rows that match a list of values
SELECT *
FROM table
WHERE
column_name IN (‘value1’, ‘value2’, value3, ‘value4’);
Creating a view
CREATE VIEW View_name AS
SELECT * FROM Table_name;
Delete a view
DROP VIEW View_Name;
Append two select statements
[select_statement_one]
UNION
[select_statement_two];
Selecting rows that occur in both SELECT statements
[select_statement_one]
INTERSECT
[select_statement_two];
Selecting rows that occur in the first SELECT statement but not the second SELECT statement
[select_statement_one]
EXCEPT
[select_statement_two];
Launching the SQLite shell
sqlite3 chinook.db
Activate column headers in SQLite shell
.headers on
Activate column formatting for SQLite shell output
.mode column
Displaying help text in SQLite shell
.help
Display the list of tables and view of a database from SQLite shell
.tables
Run a BASH command from within SQLite shell
.shell [BASH_Command]
View a table’s schema from within SQLite shell
.schema [Table_Name]
Terminate the SQLite shell
.quit
Creating a table with a primary key and foreign key
CREATE TABLE [table_name] ( [pk_id_name] INTEGER PRIMARY KEY, [fk_id_name] INTEGER, [column3_name] [column3_type], FOREIGN KEY ([fk_id_name]) REFERENCES [fk_table]([fk_id_name]) );
Creating a table with a compound primary key and multiple foreign keys
Insert a new row of values into certain columns of an existing table
INSERT INTO [table_name] ( [column1_name], [column2_name], [column3_name] ) VALUES ( [value1], [value2], [value3] );
Insert multiple rows for all columns of an existing table
INSERT INTO [table_name]
VALUES
([A1], [A2], [A3]),
(B1], [B2], [B3]);
Deleting selected rows from a table
DELETE FROM [table_name]
WHERE [filter_expression];
Create a new column in an existing table
ALTER TABLE [table_name]
ADD COLUMN [column_name] [column_type];
Changing values for existing rows
UPDATE [table_name] SET [column1] = [expression], [column1] = [expression] WHERE [expression];
Import Python module for working with SQLite 3
import sqlite3
Use Python to create a connection to a SQLite database
conn = sqlite3.connect(“job.db”)
Create a Python Cursor class
cursor = conn.cursor()
Run a SQL query from a Python cursor
cursor.execute(“SQL statement as string;”)
Fetch the full results as a list of tuples from a Python cursor
results = cursor.fetchall()
Fetch the one results from a Python cursor and then another
first_result = cursor.fetchone() second_result = cursor.fetchone()
Fetch the first five results from a Python cursor
five_results = cursor.fetchmany(5)
Terminate a Python SQLite3 connection
conn.close()