I am currently using this Query to delete all records in Table x:
Delete * From x;
Then repeating similar for Table y, then Table z, etc
I would like to delete all records from multiple Tables in a single step, e.g.:
DELETE x.*, y.*, z*
FROM x, y, z;
I get an error message "could not delete from specified tables". Could anyone tell me where where I am going wrong?
Thanks
k
Delete * From x;
Then repeating similar for Table y, then Table z, etc
I would like to delete all records from multiple Tables in a single step, e.g.:
DELETE x.*, y.*, z*
FROM x, y, z;
I get an error message "could not delete from specified tables". Could anyone tell me where where I am going wrong?
Thanks
k