2018-11-01数据库大致语法公式

增加

insert  into  表明(列名,...,列名)values (对应的值,...,对应的值)

删除

delete  表名  where 列名 关系运算符(值)where(条件)

修改

update 表名 set 列名=值,...,列名=值   where(条件)

查询

select(列名,(可以用*表示所有行)..,列名) where(条件)

你可能感兴趣的:(2018-11-01数据库大致语法公式)