MySql数据库的增删改查

MySql数据库的操作:
对于数据库中表中的数据操作包括:增、删、改、查
(1)增加:insert into

全列插入:insert into 表名 values(...)
缺省插入:insert into 表名(列1,...) values(值1,...)
同时插入多条数据:insert into 表名 values(...),(...)...;
或insert into 表名(列1,...) values(值1,...),(值1,...)...;

(2)删除:delete

 删除:delete from 表名 where 条件
 逻辑删除,本质就是修改操作update
alter table students add isdelete bit default 0;
如果需要删除则
update students isdelete=1 where ...;

(3)修改:update

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

(4)查询:select

select * from 表名

?

MySql数据库的增删改查

上一篇:SQL学习


下一篇:MySQL之where条件数据筛选