Rudolf Adamkovič Personal site


Example: Merging tables column-wise

CREATE TABLE t(a, b);
CREATE TABLE u(c, d);

INSERT INTO t(a, b) VALUES (10, 20);
INSERT INTO u(c, d) VALUES (30, 40);

SELECT a, b, c, d FROM t JOIN u;
abcd
10203040

© 2025 Rudolf Adamkovič under GNU General Public License version 3.
Made with Emacs and secret alien technologies of yesteryear.