create 对象 对象名
drop
alter
(用户、模式、角色 表、视图、索引、序列、同义词、存储过程、触发器、上下文)
insert into 表名() values();
delete 表名 where;
update 表名 set 列名=xxx where;
select * from 表名 where;
grant xxx to 用户名;
revoke xxx to 用户名
原文:https://www.cnblogs.com/EricShen/p/14479706.html