opengauss常用命令
时间: 2023-11-15 19:00:40 浏览: 176
OpenGauss是一款开源的关系型数据库管理系统,它支持SQL标准,同时也支持PL/SQL语言。以下是OpenGauss常用的命令:
1. 登录数据库:gsql -d 数据库名 -p 端口号 -U 用户名 -W 密码
2. 创建数据库:createdb 数据库名
3. 删除数据库:dropdb 数据库名
4. 列出数据库:\l 或 select datname from pg_database;
5. 连接数据库:\c 数据库名
6. 列出表:\d 或 select tablename from pg_tables where schemaname='public';
7. 创建表:create table 表名 (列名1 数据类型1, 列名2 数据类型2, ...);
8. 删除表:drop table 表名;
9. 插入数据:insert into 表名 (列名1, 列名2, ...) values (值1, 值2, ...);
10. 查询数据:select * from 表名;
11. 更新数据:update 表名 set 列名1=值1, 列名2=值2, ... where 条件;
12. 删除数据:delete from 表名 where 条件;
13. 创建索引:create index 索引名 on 表名 (列名);
14. 删除索引:drop index 索引名;
15. 查看表空间:\db 或 select spcname from pg_tablespace;
16. 查看当前用户:select current_user;
17. 查看当前时间:select now();
阅读全文