3cb-data

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.alexwennerberg.com/3cb-data.git
Log | Files | Refs | README | LICENSE

delete-last.sql (179B)


      1 delete from deck where round = (select max(id) from round);
      2 delete from match where round = (select max(id) from round);
      3 delete from round where id = (select max(id) from round);