sql语句中的select语句
Sql语句
1.select查询语句
sql中select是什么意思select (distinct)【columnname,*】 form TableName  (where 条件)
例如:在表student中查询 ”name“ 学⽣姓名为 str (str为输⼊的变量);
"select * from student where name='"+ss+"'";
加上distinct,表⽰重复的内容会被去掉。
2.where ⼦句
where 中可使⽤的符号  >⼤于,<⼩于,=等于,<>不等于 ,!> 不⼤于!<;不⼩于
where name like (‘%str% ‘,’str_’)
where name=str1 or name2=str2
select * from tablename order by colmnname  【DESC,ASC】
DESC 表⽰从⼤到⼩排列,ASC 从⼩到⼤;
select  id,COUNT(*)  AS  name  from  tablename  group  by  name;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。