如何正确选择子查询
我有两个查询,可以给我一个条目。我该如何选择表上的两个?
query1:从[table1] =&gt中选择max([column3]); 42
query2:从[table1] =&gt中选择顶部1 [column1]; 'test'
我想要一个像这样的结果
集1 Result1 | Result2 |
---|---|
42'test | ' |
但是如何正确执行呢?我可以以某种方式从无处选择吗?
I have two queries that give me back a single entry. How can I select both of these as on table?
query1: Select max([column3]) from [table1] => 42
query2: Select Top 1 [column1] from [table1] => 'test'
I want a resultset like this
result1 | result2 |
---|---|
42 | 'test' |
But how to do it correctly? Can I maybe select from nowhere somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
row_number
,两次:请注意,我假设存在列
some_col
您打算用于选择column1
值。You could use
ROW_NUMBER
, twice:Note that I assume there exists a column
some_col
which you intend to use for choosing thecolumn1
value.