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; use marketdb;
if exists (select * from sysobjects where name='commercials') if exists (select * from sysobjects where name='commercials')
DROP TABLE commercials ( DROP TABLE commercials;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='member_status') if exists (select * from sysobjects where name='member_status')
DROP TABLE member_status ( DROP TABLE member_status;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='salutation') if exists (select * from sysobjects where name='salutation')
DROP TABLE salutation ( DROP TABLE salutation;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='subscription') if exists (select * from sysobjects where name='subscription')
DROP TABLE subscription ( DROP TABLE subscription;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='subscption_order') if exists (select * from sysobjects where name='subscption_order')
DROP TABLE subscption_order ( DROP TABLE subscption_order;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='members') if exists (select * from sysobjects where name='members')
DROP TABLE members ( DROP TABLE members;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='persons') if exists (select * from sysobjects where name='persons')
DROP TABLE persons ( DROP TABLE persons;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='trial_period') if exists (select * from sysobjects where name='trial_period')
DROP TABLE trial_period ( DROP TABLE trial_period;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='quality_checks') if exists (select * from sysobjects where name='quality_checks')
DROP TABLE quality_checks ( DROP TABLE quality_checks;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='cities') if exists (select * from sysobjects where name='cities')
DROP TABLE cities ( DROP TABLE cities;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='countries') if exists (select * from sysobjects where name='countries')
DROP TABLE countries ( DROP TABLE countries;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='rents') if exists (select * from sysobjects where name='rents')
DROP TABLE rents ( DROP TABLE rents;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='locations') if exists (select * from sysobjects where name='locations')
DROP TABLE locations ( DROP TABLE locations;
);
use marketdb; use marketdb;
if exists (select * from sysobjects where name='rent_prices') if exists (select * from sysobjects where name='rent_prices')
DROP TABLE rent_prices ( DROP TABLE rent_prices;
);
use master; use master;
if exists (select * from sys.databases where name='marketdb') if exists (select * from sys.databases where name='marketdb')