mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 16:48:17 -05:00
4 lines
193 B
SQL
4 lines
193 B
SQL
CREATE TABLE test1 (i int4, t text, b bytea);
|
|
|
|
INSERT INTO test1 values (1, 'joe''s place', '\\000\\001\\002\\003\\004');
|
|
INSERT INTO test1 values (2, 'ho there', '\\004\\003\\002\\001\\000');
|