Update
This commit is contained in:
13
uebung9/uebung09-examples/prepared-statements/setup.sql
Normal file
13
uebung9/uebung09-examples/prepared-statements/setup.sql
Normal 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);
|
||||
|
Reference in New Issue
Block a user