What's the query to delete all data from a database? The reason for this is there are tons of data that will be processed and stored on that database and every month it should be cleaned in order to avoid having tons of data as the previous data will be irrelevant on the next cycle.
PS, is there such a query as:
Dim sqlQuery As String = "DELETE ALL * FROM employee_table"
I've seen this question but I don't think it's the answer to what I'm looking to do.