这个创建表语法有什么问题

发布于 2024-11-30 07:27:32 字数 747 浏览 0 评论 0原文

这是我创建的表,这是我收到的错误

DROP TABLE IF EXISTS `teamfocus_dbo`.`sysdiagrams`;
CREATE TABLE `teamfocus_dbo`.`sysdiagrams` (
    `name` VARCHAR(128) NOT NULL,
  `principal_id` INT(10) NOT NULL,
  `diagram_id` INT(10) NOT NULL AUTO_INCREMENT,
  `version` INT(10) NULL,
  `definition` VARBINARY(-1) NULL,
  PRIMARY KEY (`diagram_id`),
  UNIQUE INDEX `UK_principal_name` (`principal_id`, `name`)
)
ENGINE = INNODB;

错误

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 '-1) NULL,
 PRIMARY KEY (`diagram_id`),
 UNIQUE INDEX `UK_principal_name` (`pri' at line 6

我什至尝试取出唯一的行但仍然出错......任何想法

Here is my create table and this is the error I am getting

DROP TABLE IF EXISTS `teamfocus_dbo`.`sysdiagrams`;
CREATE TABLE `teamfocus_dbo`.`sysdiagrams` (
    `name` VARCHAR(128) NOT NULL,
  `principal_id` INT(10) NOT NULL,
  `diagram_id` INT(10) NOT NULL AUTO_INCREMENT,
  `version` INT(10) NULL,
  `definition` VARBINARY(-1) NULL,
  PRIMARY KEY (`diagram_id`),
  UNIQUE INDEX `UK_principal_name` (`principal_id`, `name`)
)
ENGINE = INNODB;

ERROR

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 '-1) NULL,
 PRIMARY KEY (`diagram_id`),
 UNIQUE INDEX `UK_principal_name` (`pri' at line 6

I even tried to take out the UNIQUE line and still erroring...any ideas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余厌 2024-12-07 07:27:32

对于大多数数据库,-1 不是 VARBINARY 的有效长度:

SQL Server:
http://msdn.microsoft.com/en-us/library/ms188362.aspx

varbinary [ ( n | max) ]

可变长度二进制数据。 n 可以是一个值
从 1 到 8,000。

MySQL: http://dev.mysql.com/doc/refman /5.0/en/binary-varbinary.html

引用 VARCHAR,它提供以下限制:

MySQL之前可以将长度指定为0到255之间的值
5.0.3,5.0.3及更高版本为0到65,535。

http://dev.mysql.com/doc/refman/5.0/en /char.html

-1 isn't a valid length for VARBINARY for most databases:

SQL Server:
http://msdn.microsoft.com/en-us/library/ms188362.aspx

varbinary [ ( n | max) ]

Variable-length binary data. n can be a value
from 1 through 8,000.

MySQL: http://dev.mysql.com/doc/refman/5.0/en/binary-varbinary.html

Refers to VARCHAR which provides the following limits:

The length can be specified as a value from 0 to 255 before MySQL
5.0.3, and 0 to 65,535 in 5.0.3 and later versions.

http://dev.mysql.com/doc/refman/5.0/en/char.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文