I have tried everything to get this to work. I know it works for MySQL, but I am stumped as to how to get this to work in SQL Server.
Using the code from here: MySQL delete multiple rows in one query conditions unique to each row and here Fiddle MySQL
DELETE FROM tab
WHERE (col1, col2) IN (('2016/3/1', 2), ('2016/3/2', 4), ('2016/3/3', 6));
I know you can do this below in SQL Server, but this only addresses one column.
DELETE FROM tab
WHERE col2 IN (2, 4, 6);
How can you achieve the same thing in SQL Server?