博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
两条SQL语句
阅读量:5241 次
发布时间:2019-06-14

本文共 361 字,大约阅读时间需要 1 分钟。

select count(*) as "所查人数"  from (select * from table_a a, table_b b where a.pid = b.pid) t where t.name like '张%'   and t.age >= 24   and t.age <= 50;select avg(t1.age) as "所查平均年龄"  from (select * from table_a a, table_b b where a.pid = b.pid) t1 where t1.name like '张%'   and t1.sex = '男';

 

转载于:https://www.cnblogs.com/geniussoft/archive/2012/12/06/2804342.html

你可能感兴趣的文章
java框架-15spring4_mybatis04-EHcahce-logback
查看>>
java 前端--event 事件
查看>>
CSS+Js在段落文字最后自动加入隐藏文字
查看>>
poj1417(种类并查集+dp)
查看>>
CCI_Q1.1
查看>>
JavaScript设计模式与开发实践pdf
查看>>
贝叶斯思维 统计建模的Python学习法pdf
查看>>
Visual FoxPro权威指南pdf
查看>>
HDU 2561 第二小整数
查看>>
这两天遇到iphone使用app store下载免费软件,必须验证付款信息才能购物是怎么回事???...
查看>>
Linux下中间人攻击利用框架bettercap测试
查看>>
ecshop hash登录 + wordpress mysql盲注字段
查看>>
接口和多态
查看>>
初涉三元环
查看>>
Python SMTP发送邮件
查看>>
庄子·内篇·养生主第三
查看>>
【LeetCode】137. Single Number II (3 solutions)
查看>>
物理模型name与comment互相转化
查看>>
markdown语法
查看>>
HDU 4553 约会安排
查看>>