Erik Hesselink d90ce48f42 Fix sql.
Update without rows doesn't do anything, which meant the select didn't
return anything.
2016-05-20 14:44:36 +02:00

5 lines
104 B
SQL

CREATE TABLE HELLO (HELLO CHAR(12))
INSERT INTO HELLO
VALUES ('HELLO WORLD!')
SELECT * FROM HELLO