标签: sql db2
我必须从具有复合键的DB2表中删除数据。我可以使用以下查询删除:delete from <table> where <col_1> in (...) and <col_2> in (...) etc..etc ..
delete from <table> where <col_1> in (...) and <col_2> in (...)
但是我想构建一个独立于输入数据(作为过滤器)的查询,因为它通常存在于数十万条记录中。
我该怎么做?