db_AI-4/sql/sql/remove_database.sql

10 lines
225 B
MySQL
Raw Normal View History

2017-06-26 21:17:54 +02:00
-- Removes the tables for the market DB
2017-06-05 13:11:26 +02:00
--
-- Author: Andreas Zweili
-- Erstellt: 2017-05-27
-- DB-Server SQL Server 2016
use master;
if exists (select * from sys.databases where name='marketdb')
drop DATABASE marketdb;