MySQL Note10: 数据操作

MySQL Note10: 数据操作

SQL

# 查询 select * from 表名 # 增加 全列插入:insert into 表名 values(…) 缺省插入:insert into 表名(列1,…) values(值1,…) 同时插入多条数据:insert into 表名 values(…),(…)…; 或insert into 表名(列1,…) values(值1,…),(值1,…)…; 主键列是自动增长,但是在全列插入时需要占位,通常使用0,插入成功后以实际数据为准 修改 update 表名 set 列1=值1,… where 条件 删除 delete from 表名 where 条件 逻辑删除,本质就是修改操作update alter table students add isdelete bit default 0; 如果需要删除则 update students isdelete=1 where …;

Python