Posted on
2020-07-14 15:29一花多叶无菩提
阅读(121)
评论(0)
收藏举报
mysql的增删改查
#查询
select * from table1
#添加
insert into table1 (name,password,age) values(444,4444,4444.44);
#删除
delete from table1 where `id`=3
#修改
update table1 SET name=555,password=555,age=55where id=4