I am having some trouble with my SQL file while I tried to import:
USE [db_events]
GO
/****** Object: Table [dbo].[Tbl_UserReg] Script Date: 04/09/2016 16:05:08 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Tbl_UserReg](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[LogId] [int] NOT NULL,
[Name] [varchar](100) NOT NULL,
[Mob] [varchar](15) NOT NULL,
[Email] [varchar](100) NULL,
[CName] [varchar](100) NULL,
CONSTRAINT [PK_Tbl_UserReg] PRIMARY KEY CLUSTERED
(
[UserId] ASC
)WITH (PAD_I[...]
it shows these error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'U' at line 1