relpipe-data/examples/relpipe-in-sql-1.sql
author František Kučera <franta-hg@frantovo.cz>
Sat, 08 May 2021 21:33:15 +0200
branchv_0
changeset 322 060d2590e77c
parent 278 ae17db13569c
permissions -rw-r--r--
first version of release-v0.18.sh

CREATE TABLE a (
	id integer,
	message varchar
);

CREATE VIEW b AS SELECT upper(message) AS msg FROM a;

INSERT INTO a VALUES (1, "Hello,");
INSERT INTO a VALUES (2, "world!");