Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为通过一个例子更容易理解我想要什么:
记录 :
名称数据
AAAAA 分享它AAAA天文学 AAAAA 数学BBBBB分享它CCCCC分享它CCCCC足球
我想选择前两条记录(包含所有数据)。(如果记录有NAME重复,获取它并且不计为记录)我想得到这个:
AAAAA 分享它 AAAA 天文学 AAAA 数学 BBBBB 分享它
不知道是不是容易理解。
SELECT a.* FROM tableName a INNER JOIN ( SELECT DISTINCT Name FROM tableName ORDER BY Name LIMIT 2 ) b ON a.Name = b.Name