我的最终结果是将查询结果添加到 asp.net gridivew,c#。
我有一张桌子,上面有以下内容
updateID teamID empID shiftID
有9个不同班次的团队
我正在尝试拆分数据库结果,以便它根据 shift 列返回值teamID
我不确定如何将结果合并为 9 列
Select shiftID as col1 from test1 where teamID = 1
Select shiftID as col2 from test1 where teamID = 2
Select shiftID as col3 from test1 where teamID = 3
Select shiftID as col4 from test1 where teamID = 4
ETC
有人可以帮助提供最佳解决方案,以便我可以将结果添加到 gridview