relpipe-data/examples/relpipe-in-sql-1.sql
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Nov 2020 20:36:38 +0100
branchv_0
changeset 320 3667c8882ebd
parent 278 ae17db13569c
permissions -rw-r--r--
update Big picture: in-yamltable, in-jsontable, in-ini, in-jack, out-jack
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
278
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
CREATE TABLE a (
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
	id integer,
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
	message varchar
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
);
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
CREATE VIEW b AS SELECT upper(message) AS msg FROM a;
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
INSERT INTO a VALUES (1, "Hello,");
ae17db13569c examples: Reading SQL scripts
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
INSERT INTO a VALUES (2, "world!");