Skip to content

Instantly share code, notes, and snippets.

@carloocchiena
Last active September 17, 2021 14:41
Show Gist options
  • Save carloocchiena/0e2055441799c02eda1e1ad0f5ff6ef0 to your computer and use it in GitHub Desktop.
Save carloocchiena/0e2055441799c02eda1e1ad0f5ff6ef0 to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS album (
`ID` INT PRI,
`ARTIST` VARCHAR(30),
`ALBUM` VARCHAR(30),
`GENRE` VARCHAR(30),
PRIMARY KEY (ID)
);
INSERT INTO album VALUES
(1,'Pantera','Official Live','Trash Metal'),
(2,'Sepultura','Roots','Death Metal'),
(3,'Obituary','Obituary','Death Metal'),
(4,'Spliknot','IOWA','NU Metal'),
(5,'Biohazard','Mata Leao','Crossover Metal'),
(6,'Sepultura','Chaos AD','Death Metal'),
(7,'Soulfly','Soulfly','NU Metal'),
(8,'Megadeth','Rest in Pieces','Trash Metal'),
(9,'Machine Head','Blackening','NU Metal');
@carloocchiena
Copy link
Author

This gist has been used on 2021 to create a tutorial for Azionadigitale.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment