From 887d168df2e96ae7c93375d9ae5251f5637caaee Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 24 Jun 2017 20:08:30 +0200 Subject: [PATCH] remove unnecessary parentheses --- sql/sql/setup_04_remove_database.sql | 42 ++++++++++------------------ 1 file changed, 14 insertions(+), 28 deletions(-) diff --git a/sql/sql/setup_04_remove_database.sql b/sql/sql/setup_04_remove_database.sql index 5d458c6..0483286 100644 --- a/sql/sql/setup_04_remove_database.sql +++ b/sql/sql/setup_04_remove_database.sql @@ -15,73 +15,59 @@ use marketdb; use marketdb; if exists (select * from sysobjects where name='commercials') - DROP TABLE commercials ( - ); + DROP TABLE commercials; use marketdb; if exists (select * from sysobjects where name='member_status') - DROP TABLE member_status ( - ); + DROP TABLE member_status; use marketdb; if exists (select * from sysobjects where name='salutation') - DROP TABLE salutation ( - ); + DROP TABLE salutation; use marketdb; if exists (select * from sysobjects where name='subscription') - DROP TABLE subscription ( - ); + DROP TABLE subscription; use marketdb; if exists (select * from sysobjects where name='subscption_order') - DROP TABLE subscption_order ( - ); + DROP TABLE subscption_order; use marketdb; if exists (select * from sysobjects where name='members') - DROP TABLE members ( - ); + DROP TABLE members; use marketdb; if exists (select * from sysobjects where name='persons') - DROP TABLE persons ( - ); + DROP TABLE persons; use marketdb; if exists (select * from sysobjects where name='trial_period') - DROP TABLE trial_period ( - ); + DROP TABLE trial_period; use marketdb; if exists (select * from sysobjects where name='quality_checks') - DROP TABLE quality_checks ( - ); + DROP TABLE quality_checks; use marketdb; if exists (select * from sysobjects where name='cities') - DROP TABLE cities ( - ); + DROP TABLE cities; use marketdb; if exists (select * from sysobjects where name='countries') - DROP TABLE countries ( - ); + DROP TABLE countries; use marketdb; if exists (select * from sysobjects where name='rents') - DROP TABLE rents ( - ); + DROP TABLE rents; use marketdb; if exists (select * from sysobjects where name='locations') - DROP TABLE locations ( - ); + DROP TABLE locations; use marketdb; if exists (select * from sysobjects where name='rent_prices') - DROP TABLE rent_prices ( - ); + DROP TABLE rent_prices; use master; if exists (select * from sys.databases where name='marketdb')