Neon-readme-12.txt
· 246 B · Text
Ham
> psql -p 55432 -h 127.0.0.1 -U cloud_admin postgres
postgres=# CREATE TABLE t(key int primary key, value text);
CREATE TABLE
postgres=# insert into t values(1,1);
INSERT 0 1
postgres=# select * from t;
key | value
-----+-------
1 | 1
(1 row)
1 | > psql -p 55432 -h 127.0.0.1 -U cloud_admin postgres |
2 | postgres=# CREATE TABLE t(key int primary key, value text); |
3 | CREATE TABLE |
4 | postgres=# insert into t values(1,1); |
5 | INSERT 0 1 |
6 | postgres=# select * from t; |
7 | key | value |
8 | -----+------- |
9 | 1 | 1 |
10 | (1 row) |