We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5459896 commit a15e711Copy full SHA for a15e711
Starter.sql
@@ -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