SQL如何从多表中查询并显示查询结果的前3条记录?

2024-12-05 02:30:58
推荐回答(2个)
回答(1):

你问题描述不清,前3条,是根据什么来判断前3条?tab1还是tab2还是tab3的某一个或者多个字段?他们三个表之间的关系如何?

大概如此:

select a.*, b.col1, c.col1 from tab1 a, tab2 b, tab3 c
--where a.coln = b.coln and b.coln = c.coln 如果他们之间有关系的话自行加上
order by b.col1, c.col1
为tab2 , tab3的col1字段排序所得,你可自行改。

回答(2):

SQL SERVER:
select top 3 column... form ... where ... order by ...
ORACLE:
select column from ...where ...AND rownum < 3 order by ...