[GBase 8s 教程]GBase 8s 删除表格
程序员文章站
2022-07-01 07:53:21
...
GBase 8s 使用 DROP TABLE 语句来删除表格,包含表格数据、规则、触发器等,所以删除表格要慎重,删除后所有信息就消失了。
语法
DROP TABLE 语法格式如下:
DROP TABLE [ IF EXISTS ] table_name;
实例
上一章节中我们创建了 COMPANY 和 DEPARTMENT 两个表格,我们可以先使用 info tables 命令来查看表格是否创建成功:
[[email protected] ~]$ dbaccess testdb -
Database selected.
> info tables;
Table name
company department
Elapsed time: 0.005 sec
从以上结果可以看出,我们表格已经创建成功,接下来我们删除这两个表格:
[[email protected] ~]$ dbaccess testdb -
Database selected.
> drop table company;
Table dropped.
Elapsed time: 0.003 sec
> drop table department;
Table dropped.
Elapsed time: 0.004 sec
再使用 info tables 命令来查看就找不到表格了:
> info tables;
Table name
Elapsed time: 0.005 sec
上一篇: GBase 8s 存储加密配置
下一篇: php实现递归与无限分类的方法