Skip to content

Instantly share code, notes, and snippets.

@just-Bri
Last active November 4, 2019 19:47
Show Gist options
  • Save just-Bri/b03352d5ae347a731642ca2a8bd5a828 to your computer and use it in GitHub Desktop.
Save just-Bri/b03352d5ae347a731642ca2a8bd5a828 to your computer and use it in GitHub Desktop.
sql stuff
create table bookmarks (
id INT,
name VARCHAR(50),
url VARCHAR(1000)
);
insert into bookmarks (id, name, url) values (1, 'Schultz Inc', 'https://so-net.ne.jp');
insert into bookmarks (id, name, url) values (2, 'Sauer-Abbott', 'http://youtu.be');
insert into bookmarks (id, name, url) values (3, 'Lueilwitz, Farrell and Becker', 'http://intel.com');
insert into bookmarks (id, name, url) values (4, 'Little and Sons', 'https://domainmarket.com');
insert into bookmarks (id, name, url) values (5, 'Hauck-Shields', 'http://google.it');
insert into bookmarks (id, name, url) values (6, 'Spinka LLC', 'https://unicef.org');
insert into bookmarks (id, name, url) values (7, 'Hartmann, Gutkowski and Hagenes', 'http://51.la');
insert into bookmarks (id, name, url) values (8, 'McKenzie-Collins', 'http://etsy.com');
insert into bookmarks (id, name, url) values (9, 'Dach and Sons', 'http://eepurl.com');
insert into bookmarks (id, name, url) values (10, 'Kris-Bartell', 'http://amazonaws.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment