This commit is contained in:
2019-07-04 08:13:20 +02:00
parent 39a14ad5a2
commit 54e8654512
8 changed files with 306 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
DROP TABLE IF EXISTS t;
CREATE TABLE t (
string_column TEXT NOT NULL,
integer_colum INT NOT NULL
);
INSERT INTO t
VALUES
("Erster String", 98765),
("Zweiter String", 87654),
("Dritter String", 76543);