数据库操作 PostGreSQL基本操作
程序员文章站
2022-05-31 21:57:17
...
CLI连接Postgresql:
1、切换至postgres用户
# su - postgres
# psql 以postgres用户身份连接到postgres数据库
# psql --username=neo123 -W -d hello -h localhost -p 5432 以neo123用户身份连接到hello数据库
- 列出所有数据库
\l
- 切换数据库
\c dbname
- 退出操作
q
删除表
drop table [表名];
上一篇: 加减乘除运算法则 PHP mcrypt可逆加密算法分析
下一篇: C# Fun委托