Остання активність 1729300073

Версія 8a49663f787f645b18b76230fd47e608e072a2cb

Neon-readme-12.txt Неформатований
1> psql -p 55432 -h 127.0.0.1 -U cloud_admin postgres
2postgres=# CREATE TABLE t(key int primary key, value text);
3CREATE TABLE
4postgres=# insert into t values(1,1);
5INSERT 0 1
6postgres=# select * from t;
7 key | value
8-----+-------
9 1 | 1
10(1 row)