Would like to delete data from multiple tables in bigquery.
Below delete syntax is working to delete single table without Union all or wildcard
delete FROM `abc.analytics_151541058.events_20190201` WHERE event_date='20190201'
Below delete query with Union all did not worked
delete FROM `abc.analytics_151541058.events_20190201` WHERE event_date='20190201'
UNION ALL
delete FROM `abc.analytics_151541058.events_20190201` WHERE event_date='20190202'
Below delete query with wildcard did not worked
delete FROM `abc.analytics_151541058.events_*`,
WHERE _TABLE_SUFFIX BETWEEN '20190201' AND '20190202'
Pls. Help