Skip to content

Commit a15e711

Browse files
committed
Starter.
1 parent 5459896 commit a15e711

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Starter.sql

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
BEGIN TRANSACTION;
2+
3+
/* Create a table called NAMES */
4+
CREATE TABLE NAMES(Id integer PRIMARY KEY, Name text);
5+
6+
/* Create few records in this table */
7+
INSERT INTO NAMES VALUES(1,'Tom');
8+
INSERT INTO NAMES VALUES(2,'Lucy');
9+
INSERT INTO NAMES VALUES(3,'Frank');
10+
INSERT INTO NAMES VALUES(4,'Jane');
11+
INSERT INTO NAMES VALUES(5,'Robert');
12+
COMMIT;
13+
14+
/* Display all the records from the table */
15+
SELECT * FROM NAMES;

0 commit comments

Comments
 (0)