create table kn_productconfig(
id varchar(10) primary key not null auto_increment,
avviewname varchar(20) DEFAULT NULL,
orderviewname varchar(20) DEFAULT null
producttype int(10) DEFAULT null
readpricetype int(10) DEFAULT null
traveltype int(10) DEFAULT null
issuccess int(10) DEFAULT null
travelertype int(10) DEFAULT null
productname varchar(20) DEFAULT null
strattime date DEFAULT null
strattime date DEFAULT null
)
运行SQL报1063错误......
这是因为:
auto_increment columns must be integer type (TINYINT, SMALLINT, INTEGER, or BIGINT)
自动增长的主键应该使用整型....
====================================
分享到:
相关推荐
在MySQL数据库中,错误1166 "Incorrect column name" 是一个常见的问题,它通常发生在尝试执行SQL语句,例如创建、更改或查询表结构时。这个错误提示表示数据库无法识别指定的列名,原因可能是因为列名存在无效字符...
获取锁ID时出错,通常是由于内部数据库错误或并发控制机制的问题。 #### ORA-00023: Unable to Lock Resource in Library Cache 当无法锁定库缓存中的资源时触发。这可能与并发控制有关,也可能是因为资源本身的...
在使用数据库进行数据操作时,有时会遇到错误提示"Incorrect integer value: '' for column 'id' at row 1"。这个错误通常出现在尝试插入数据到一个整数类型的列时,而该列期望的是一个整数值,但提供的值是空字符串...
1.采集站的数据库 2.无数据时搬家没问题,有采集数据后搬家,个别菜单报错 解决过程 0.各种度娘,谷哥,无果。 1.原站数据库版本5.0,新家数据库版本4.2,猜测版本不对,重装环境。无效。 2.客户提供的备份是...
MySQL错误1366 - Incorrect integer value 是一个常见的数据库错误,通常发生在尝试插入或更新数据时,如果提供的值与目标字段的数据类型不匹配,特别是当试图将非整数值(如空字符串'')插入到整数字段时,就会出现...
在PowerBuilder 12.5(简称PB12.5)开发过程中,遇到“Line 130 Column 487 incorrect syntax”错误是一种常见的编程问题。这种错误通常出现在数据窗口(DataWindow,简称DW)对象的编译阶段,提示在指定的行号和列...
For the most recent updates to the IP installation instructions for this core, please go to: http://www.xilinx.com/ipcenter/coregen/ip_update_install_instructions.htm For system requirements: ...
刚开始学习数据库操作,今天存数据时发现,保存的时候报错(Error 1292: Incorrect datetime value: '0000-00-00' for column 'deleted_at' at row 1) ,之后就搜索了下原因,是因为MySQL存日期时不允许出现这种格式...
在MySQL 5.x及以上版本中,用户可能会遇到错误#1929,提示"Incorrect datetime value: '' for column 'createtime'"。这个错误通常出现在尝试插入或更新包含日期时间值的列时,如果该列的值为空,而数据库配置不允许...
由于这个数据库服务器存放的数据库比较多且都是小数据库,所以最初的时候是运行在windows服务器上的。前一段时间由于机房服务器要做调整,于是我便在一个夜深人静的夜晚对数据库进行的迁移及前台应用程序进行了调整...
/home/rootroot/sogou/toolchain/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Wcpp] #warning redirecting incorrect #include <sys/poll.h> to ^ In...
No declaration for function ''xxx'' -------------------没有函数xxx的说明 No stack ---------------缺少堆栈 No type information ------------------没有类型信息 Non-portable pointer assignment --------...
66480555[http-80-4] ERROR org.hibernate.util.JDBCExceptionReporter - Incorrect string value: '\xE7\x89\xA9\xE8\xB5\x84' for column 'search' at row 1 ``` 这里提到的错误码1366对应于MySQL中的错误类型:...
- **SXMSPERROR (XML Message Broker: Message Queue (Incorrect Entries))**: 记录消息队列中的错误条目。 - **SXMSCLUP (Cluster-Compressed Message Payload Property)**: 存储压缩后的消息负载属性。 - **...
今天在学习Python的过程中操作数据库,遇到了一个问题,执行sql语句插入数据的时候报错Incorrect integer value: ” for column ‘id’ at row 1 我的数据库设计是这样的: 一个很简单的用户信息表,其中ID是int...
在处理MySQL数据库导入操作时,遇到“ERROR 1102(42000) at line 160: Incorrect database name 'ʡ(һѵ)'”这一错误信息是较为常见的问题,尤其是在字符集不匹配的情况下。此错误通常表明在尝试创建或访问数据库时...
在MySQL数据库管理中,"Incorrect key file for table" 是一种常见的错误信息,它通常表示某个数据表的索引文件可能已经损坏或不匹配。这种问题可能是由于硬盘故障、不正常的数据库关闭、复制过程中数据损坏等原因...