问题描述
你可以通过在sql server程序中合并一个表中的数据来帮助弄清楚我应该使用哪些代码这是场景ID |名称|地址|状态|日期
1 | AJ |新泽西州|好的2013年6月9日
2 | AJ |新泽西州|优秀| 2013年6月10日
我的问题是我如何合并数据尽管id是唯一的但是因为状态是变化所以我希望新的数据会被查看,但我也有这个问题
申请人数量姓名
1 | AJ
2 | AJ
我希望它会成为一个,因为它会发生在这个插图中将是
申请人数量|姓名
1 | AJ
提前谢谢
guys can you help to figure out what code should i use by merging a data in one table in sql server procedure this is the scenario
ID | Name | Address | Status | Date
1 | AJ | New Jersey | GOOD | jun 9 2013
2 | AJ | New Jersey | EXCELLENT | jun 10 2013
my question is how can i merge the data though the id is unique but as status is change so i expect the new data will be viewed but im having also a problem with this
Number of applicant | Name
1 | AJ
2 | AJ
which i expect it to be one as it will happen to this illustration will be
Number of applicant | Name
1 | AJ
thanks in advance
这篇关于使用具有不同列和行的SQL Server合并一个表中的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!