共计 313 个字符,预计需要花费 1 分钟才能阅读完成。
创立表:
CREATE TABLE < 表名 > ([表定义选项]) 表选项;
增:
增行:
insert [into] < 表名 > (列名) values (列值)
增表:
select < 新建表列名 > into < 新建表名 > from < 源表名 >
删:
删行:
delete from < 表名 > [where < 删除条件 >]
删表:
truncate table < 表名 >
查:
精准查:
select < 列名 > from < 表名 > [where < 查问条件表白试 >] [order by < 排序的列名 >[asc 或 desc]]
全副查:
select * from < 表名 >
含糊查:
select * from a where name like ‘<name>%’
改:
update < 表名 > set < 列名 = 更新值 > [where < 更新条件 >]
正文完