我有一张带有身份证和部门的表格
表是
id dept salary date
1 30 2000 8/25/2015 12:06:54.870 PM
2 20 5500 7/12/2015 12:06:54.870 PM
3 30 6700 11/21/2013 12:06:54.870 PM
4 30 8900 4/16/2009 12:06:54.870 PM
5 30 9900 6/29/2014 12:06:54.870 PM
6 10 1120 7/3/2015 12:06:54.870 PM
7 20 8900 4/13/2013 12:06:54.870 PM
8 10 2400 7/23/2015 12:06:54.870 PM
9 30 2600 8/21/2015 12:06:54.870 PM
10 10 2999 8/3/2015 12:06:54.870 PM
只需要像这样的输出
Dept ID
30 1,3,4,5,9
答案 0 :(得分:0)
我有类似的问题,并提出了以下解决方案:
select dept,list(id,',' order by dept) from TableName group by dept
假设TableName
是表的名称。
答案 1 :(得分:0)
对于那些希望此功能适用于特定查询的人来说更简单的解决方案:
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<dict>
<key>NSExtensionActivationSupportsAttachmentsWithMaxCount</key>
<integer>10</integer>
<key>NSExtensionActivationSupportsFileWithMaxCount</key>
<integer>10</integer>
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
<integer>10</integer>
<key>NSExtensionActivationSupportsMovieWithMaxCount</key>
<integer>10</integer>
<key>NSExtensionActivationSupportsText</key>
<true/>
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
<integer>1</integer>
</dict>
</dict>
<key>NSExtensionMainStoryboard</key>
<string>ShareSheet</string>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.share-services</string>
</dict>