SQL Converter
The Problem
I had a text file containg MS SQL Server database table definitions and I needed to make it compatible with MySQL. Here’s an example:
GO
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Blecchs]') AND type in (N'U'))
BEGIN
CREATE TABLE [dbo …