0

我已经使用此代码从 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")

我必须
从数据中删除它

4

0 回答 0