Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lab-exercises
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Adilson Mendes
lab-exercises
Commits
4caf649a
Commit
4caf649a
authored
Oct 06, 2015
by
Sorrel Harriet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing reference to db_name form query
parent
51b31b9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
week-2/record-store-app/sql/dummy_data.sql
week-2/record-store-app/sql/dummy_data.sql
+4
-3
No files found.
week-2/record-store-app/sql/dummy_data.sql
View file @
4caf649a
/* Statement to insert some records in the artist table */
INSERT
INTO
sharr003_recordstore
.
artist
(
id
,
first_name
,
last_name
)
INSERT
INTO
artist
(
id
,
first_name
,
last_name
)
VALUES
(
NULL
,
'Bob'
,
'Marley'
),
(
NULL
,
'Peter'
,
'Tosh'
),
(
NULL
,
'Burning'
,
'Spear'
),
(
NULL
,
'Alton'
,
'Ellis'
),
(
NULL
,
'Gregory'
,
'Issacs'
);
(
NULL
,
'Gregory'
,
'Issacs'
)
(
NULL
,
'Desmond'
,
'Dekker'
);
INSERT
INTO
sharr003_recordstore
.
record
(
id
,
title
,
artist_id
,
genre
,
year
,
price
)
INSERT
INTO
record
(
id
,
title
,
artist_id
,
genre
,
year
,
price
)
VALUES
(
NULL
,
'Catch A Fire'
,
NULL
,
'Reggae'
,
1973
,
20
.
99
),
(
NULL
,
'Sunday Coming'
,
NULL
,
'Reggae'
,
1970
,
15
.
99
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment