[Solved] How to delete records from a database table
Find more posts tagged with
Sort by:
1 - 4 of
41
In my particular case, there's not much risk. I'm getting every week an Excel table that contains invoicing details of the entire year. Before importing the new data, I simply want to delete the existing values in the table, and the import the entire year from Excel.
So, for me that works. But I guess that's why they say "With freedom/ power comes responsibility"
So, for me that works. But I guess that's why they say "With freedom/ power comes responsibility"

As there is no direct "Delete" operator for databases yet, I would suggest to use a combination of a filter to get an example set of entries you want to delete, then use a "Loop Values" (if you only need to delete entries matching one column) or "Loop Examples" operator and place an "Execute SQL" operator inside the loop. The query you define could look like this: Regards,
Marco