欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[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