From 06d519c4b1530802cc81393cea4d5e93a1ca9a88 Mon Sep 17 00:00:00 2001 From: "Carl D. Benson" Date: Fri, 20 May 2016 16:58:37 -0500 Subject: [PATCH] Made SQL as simple as possible. No need to create tables. --- s/sql.sql | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/s/sql.sql b/s/sql.sql index c694c76d..2deda657 100644 --- a/s/sql.sql +++ b/s/sql.sql @@ -1,4 +1 @@ -CREATE TABLE HELLO (HELLO CHAR(12)) -UPDATE HELLO - SET HELLO = 'HELLO WORLD!' -SELECT * FROM HELLO +SELECT "Hello World";