Skip to content

Instantly share code, notes, and snippets.

@drpventura
Last active January 28, 2019 01:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drpventura/e29b3031af4f10d137b1c81c9a079586 to your computer and use it in GitHub Desktop.
Save drpventura/e29b3031af4f10d137b1c81c9a079586 to your computer and use it in GitHub Desktop.
The teaching table creation and CSV file importation into MariaDB (MySQL) shown in the video at: https://youtu.be/smJFdYnphVk
use first;
create table teaching (
instr_name varchar(15),
course varchar(10)
);
-- NOTE: You will need to update the path to match where instr-classes.csv is.
load data local infile 'D:/Users/Phil/Downloads/instr-classes.csv'
into table teaching
fields terminated by ',';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment