Última actividad 1729300073

knox revisó este gist 1729300072. Ir a la revisión

1 file changed, 10 insertions

Neon-readme-12.txt(archivo creado)

@@ -0,0 +1,10 @@
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)
Siguiente Anterior