3
可能是一個簡單的,有沒有辦法快速轉置我的數據,以便它讀取而不是按行讀取。如何將行轉換爲列?
以上是電流輸出,但希望它跨越例如讀取
AttendanceNumber, ExamDate, ExamCode1, ExamCode2, ExamCode3, .......ExamCode20
我的SQL是
SELECT [AttendanceNumber]
,[ExaminationDate]
,[ExamExaminationCode]
FROM [Radiotherapy].[dbo].[tblRadiologyData] rd
where rd.ExaminationDate >= '01 april 2016'
and rd.AttendanceSiteCode IN('CNM','RNM')
ORDER BY rd.LocalPatientIdentifier, rd.ExaminationDate
Wow work great,so now I have my data,there is possible to show the number of combinations and a count(例如, ExamCode1,ExamCode2組合發生x次。 – Simon
@Simon我不知道我明白你的需要..你是什麼意思的組合? – sagi
它的好解決了它,但沒有辦法排列順序考慮日期是相同的每個出席號碼,所以每次我運行它它給了我不同的輸出! – Simon