mysql内一些可以增删改查的语句
一、Insert(增)
举例说明:
我们新增一个账号密码:
insert into users value('15','test','test');
当然,是需要你按照列来新增的,数据类型也需要是列的同一数据类型,如何查看类的类型呢?使用desc 表名即可,可以看出来,id为主键:
desc users;
二、delete(删)
删数据: delete from 表名; delete from 表名 where id=1; 删除结构: 删数据库:drop database 数据库名; 删除表:drop table 表名; 删除表中的列:alter table 表名 drop column 列名
delete from users where id=15;
在注入中不要轻易使用这条命令!!!由于比较危险,其他删除语句不作演示。
三、update(改)
修改所有:
updata 表名 set 列名='新的值,非数字加单引号';
带条件的修改:
updata 表名 set 列名='新的值,非数字加单引号' where id=6;
一起动手试试吧:
update users set username='pipi' where id=15;
四、select(查)
相信这条语句大家都不陌生,举个栗子就结束这里的增删改查语法说明:
select username from users where id=15;