Hi,
I'm trying to delete the history of a tag in a data base. I found the right tagid and I'm able to display the history with this querry:
SELECT * FROM sqlt_data_1_2024_08 WHERE tagid = 90;
Now I try to delete the history with this querry :
DELETE FROM sqlt_data_1_2024_08 WHERE tagid = 90;
But I get this error :
Can you help me with this?