** Tile maybe incorrect**
Without listing by hand the table names, could I use a function to get the tables names then use that in the delete statement? ie
DELETE FROM IN (
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE';
) AS T
WHERE
T.ColumnName = 'value';
Is there a nice and clear way to do this? I'm not dropping any tables here.