Trying to delete duplicate records from a table. Following script returns this error:Server: Msg 116, Level 16, State 1, Line 1Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.DELETE FROM imrefdes_sqlWHERE ID IN(select a.imrefdes_pkg,a.imrefdes_doc_type, a.imrefdes_parent_item, a.imrefdes_item_no,a.imrefdes_ord_type,a.imrefdes_ord_no,a.imrefdes_seq_no, a.imrefdes_notefrom imrefdes_sql as a,imrefdes_sql AS bwhere a.imrefdes_pkg=b.imrefdes_pkg And a.imrefdes_doc_type=b.imrefdes_doc_type AND a.imrefdes_parent_item=b.imrefdes_parent_item and a.imrefdes_item_no = b.imrefdes_item_noand a.imrefdes_ord_type = b.imrefdes_ord_type and a.imrefdes_ord_no = b.imrefdes_ord_no and a.imrefdes_seq_no = b.imrefdes_seq_no anda.imrefdes_note = b.imrefdes_note)