0

我有一个带有 apache 服务器、mysql 和 php 的 localhost
我试图将 .SQL 导入到名为 MAFS 的现有 DB,mySQL版本是 3.5
,但它向我显示了这个错误 #1064 - 你的 SQL 语法有错误

USE [MAFS]
GO

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[UserTransportations](
[UserId] [uniqueidentifier] NOT NULL,
[TransId] [int] NOT NULL,
[Persons] [int] NULL
) ON [PRIMARY]
//** the rest of the sql query **//

我无法弄清楚我的错误是什么

4

0 回答 0