
| No. | 单词 | 释义 |
|---|---|---|
| 1 | alter table | alter table 用来更新现存表的模式。可以用 create table 来创建一个新表。 |
| 2 | commit | commit 用来将事务写入数据库。 |
| 3 | create index | create index 用来为一列或多列创建索引。 |
| 4 | create table | create table 用来创建新的数据库表。可以用 alter table 来更新一个现存表的模式。 |
| 5 | create view | create view 用来创建一个或多个表的视图。 |
| 6 | delete | delete 用来从表中删除一行或多行。 |
| 7 | drop | drop 用来永久性地删除数据库对象(表、视图和索引等) |
| 8 | insert | insert 用来对表添加一个新行。 |
| 9 | insert select | insert select 用来将 select 的结果插入到表中。 |
| 10 | rollback | rollback 用来撤销事务块。 |
| 11 | select | select 用来从一个或多个表(或视图)中检索数据。 |
| 12 | update | update 用来对表中的一行或多行进行更新。 |