MySQL表的增删改查(基础)

1.新增(Create) 创建一个货物表 (1)全列 数据插入 insert into 表名 values(插入的数据) (2)指定列 数据插入 insert into 表名 (指定的列名) values(插入的数据) 2.查询 关键字select (1)全列查询: [(2)指定列查询 select 列名 from 表名; (3)去重 distinct; (4)条件查询 where; where可
相关文章
相关标签/搜索