mysql操作语句增
insert into 表名(列名1,列名2,,,,,) values(值1,值2,,,,,,),(值1,值2,,,)
删
delete from 表名 where 条件表达式
改
`update 表名 set 列名=新值1,列名=新值2 where 条件表达式
查询
1> 查询全部 select * from 表名
2> 查询某⼀列的所有⾏信息 select 列名 from 表名
3> 按条件查询 select * from 表名 where 条件表达式1 and 条件表达式2简单的mysql语句
4> 模糊查询
select * from 表名 where 列名 like ‘%val%’ 查询带有val的数据
select * from 表名 where 列名 like "val%" 查询以val开头的数据
select * from 表名 where 列名 like "%val" 查询以val结尾的数据
多表查询
(team,member 是表名)
select * from team as t , member as m where t.id=m.id
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论