diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-08 17:04:43 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-08 17:04:43 +0200 |
commit | 4c00ac22729c3f354df423373da8da6fa22617ba (patch) | |
tree | 327ee04cc6f843f1f1a4dee8f27e814f458cab77 /opdracht-1 | |
parent | bd67527a240f0e027d7375c7b03995b4ce1b4bef (diff) |
alle opdrachten van eindopdracht behalve applicatie maken zelf af
Diffstat (limited to 'opdracht-1')
-rw-r--r-- | opdracht-1/reset.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/opdracht-1/reset.sql b/opdracht-1/reset.sql index c2f5ee9..097194f 100644 --- a/opdracht-1/reset.sql +++ b/opdracht-1/reset.sql @@ -1,5 +1,5 @@ -drop table OrderProduct; -drop table `Order`; -drop table Product; -drop table Klant; +drop table if exists OrderProduct; +drop table if exists `Order`; +drop table if exists Product; +drop table if exists Klant; |