由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 数据库查询一个小问题
相关主题
sql数据库实时更新问题how to write this query
请教set和select 的区别请问个join的问题
怎样快速得到两个表的交集请求SQL语句
请教大虾问题哈,包子谢哈问个 sp_send_dbmail 的问题
菜鸟问题,急问个SQL问题- partial outer join
SQL 查询已经解决.谢谢Modeler,mirthc,cheungcheSQL combine two tables into one table and add a new column
mysql 问题 (转载)sort two same tables SQL but different results
请教高手,包子谢SQL copy a table into a new table and add a new column
相关话题的讨论汇总
话题: columnname话题: select话题: max话题: emp话题: 数据库
进入Database版参与讨论
1 (共1页)
s****a
发帖数: 6521
1
两个表有同名的一列。现在想从这两表的这两列中查出最大的那一个数据来。
怎么查?
包子一个
c*****d
发帖数: 6045
2
select a.id,case when a.age>b.age then a.age else b.age end
from emp a, emp b
where a.id=b.id;
F*****r
发帖数: 441
3
select max(columnname)
from (
select columnname from table1
union all
select columnname form table2) x

【在 s****a 的大作中提到】
: 两个表有同名的一列。现在想从这两表的这两列中查出最大的那一个数据来。
: 怎么查?
: 包子一个

s****a
发帖数: 6521
4
where a.id=b.id
限制了该id必须同时出现在两表中吗?
这不是我要的
我想要的是 max(max(a.id),max(b.id))
s****a
发帖数: 6521
5

谢谢。。。 最后这个x是啥意思?
之前我没用这个x就是不行

【在 F*****r 的大作中提到】
: select max(columnname)
: from (
: select columnname from table1
: union all
: select columnname form table2) x

t****n
发帖数: 10724
6
正解

【在 F*****r 的大作中提到】
: select max(columnname)
: from (
: select columnname from table1
: union all
: select columnname form table2) x

F*****r
发帖数: 441
7
赋给inline view的名字。
另外,记得有的数据库不要求inline view必须有名字。

【在 s****a 的大作中提到】
:
: 谢谢。。。 最后这个x是啥意思?
: 之前我没用这个x就是不行

s****a
发帖数: 6521
8

哦。。我之前依稀记得这么个做法,但试了as,试了逗号,都不行

【在 F*****r 的大作中提到】
: 赋给inline view的名字。
: 另外,记得有的数据库不要求inline view必须有名字。

1 (共1页)
进入Database版参与讨论
相关主题
SQL copy a table into a new table and add a new column菜鸟问题,急
新手请教SQL 语法问题- alias 和 joinSQL 查询已经解决.谢谢Modeler,mirthc,cheungche
error of executing SQL query of string concatenation (转载mysql 问题 (转载)
error of sql query in MS Access database (转载)请教高手,包子谢
sql数据库实时更新问题how to write this query
请教set和select 的区别请问个join的问题
怎样快速得到两个表的交集请求SQL语句
请教大虾问题哈,包子谢哈问个 sp_send_dbmail 的问题
相关话题的讨论汇总
话题: columnname话题: select话题: max话题: emp话题: 数据库