we have a SQL table "ContactLot" in this table we have a column "contactTableName" and "creationDate", i'm tring to get all ContactLot after 2020-02-01 (here i can use creationDate column" and then i want to get some values from every table in contactTableName column, can you help me ? i'm using HeidiSQL (MySQL)
this is my request
SELECT COUNT(*) FROM ContactLot.contactLotTableName
WHERE ContactLot.creationDate > '2020-02-01 00:00:00'
I know thise request is not correct but i put it just for exemple.
Thank you.