我已使用此代码从2个表中获取数据
SELECT t1.HId,commands=STUFF(
(
SELECT DISTINCT ',' + t2.commands
FROM history_detail t2
WHERE t1.HId = t2.History_HID
FOR XML PATH('')
),1,1,'') FROM history t1, history_detail t2 GROUP BY HId
但我在2栏中得到了额外的数据
Send("this is your first testcase")
,Sleep(3000)
,WinActive("notepad")
,WinClose("notepad")
,WinWaitActive("notepad")
我必须从数据
中删除此