remove unnecessary parentheses

This commit is contained in:
Andreas Zweili 2017-06-24 20:08:30 +02:00
parent 8ab5cd6957
commit 887d168df2
1 changed files with 14 additions and 28 deletions

View File

@ -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')