Made SQL as simple as possible. No need to create tables.

This commit is contained in:
Carl D. Benson
2016-05-20 16:58:37 -05:00
parent 9f63e88962
commit 06d519c4b1

View File

@@ -1,4 +1 @@
CREATE TABLE HELLO (HELLO CHAR(12))
UPDATE HELLO
SET HELLO = 'HELLO WORLD!'
SELECT * FROM HELLO
SELECT "Hello World";