发布网友 发布时间:2022-04-23 14:58
共2个回答
热心网友 时间:2022-04-08 10:19
select decode(性别字段,'A','男','B','女','未知') as 性别 from 表名 (通过decode函数得到想要的值)
select 购物人 from 购物信息 having count(购物人||商品名称)>1 (count求出购物人购买商品大于1的)
select 姓名,课程,分数 from 成绩表 where 姓名 not in(select 姓名 from 成绩表 where 分数<=60) (姓名不包含小于60的)
select t.* from (select name,avg(score) score from student) s,student t
where s.name=t.name and s.name like '张%' and s.score>60 (姓张的大于60的,使用模糊查询,like 以张开头的字段)
select rownum,表.* from 表 where id=要查的id号 (rownum 记录行数)
table3没有图看不到
热心网友 时间:2022-04-08 11:37
一、select decode(sex,'A','男','B','女','未知') sex from table_name;