Showing posts with label tablea. Show all posts
Showing posts with label tablea. Show all posts

Tuesday, February 14, 2012

Delete more than one table

Is it possible to write SQL to delete data in more than one tables?
Something like this
Delete * from tableA and tableC and tableB where dat<>date()No, a SQL DELETE statement affects only one table - unless your particular DBMS does things differently.|||Thanks you very much. :)