MySQL在'字段列表''中插入< - 未知列'nomePersona'

时间:2014-10-29 09:27:54

标签: php mysql blob

插入代码:

INSERT INTO CalendarAppointment (`codiCategory`, `codiPersona`, `nomePersona`, `comment`, `day`, `description`, `from`, `shortDescription`, `to`, `modificatoDa`, `dataModifica`, `idModifica`) VALUES ('oUQz/ejwAfoAdAw7Jm+W1cFKeNH8N26ZBBcvhwwXPAA=', 'oUQz/ejwAfoAdAw7Jm+W1cFKeNH8N26ZBBcvhwwXPAA=', 'HuWZQyWSAnY9ReZ0q0+ZrBVRhReagvUG9Th1q3TtLPw=', 'q46vm3AsgJsEO6NOJ3r5xKhLMvvy+Sy05E76krKhiNo=', '2014-10-29', 'q46vm3AsgJsEO6NOJ3r5xKhLMvvy+Sy05E76krKhiNo=', '2014/10/13 09:00', 'q46vm3AsgJsEO6NOJ3r5xKhLMvvy+Sy05E76krKhiNo=', '2014/10/13 09:30', '2014-10-29 11:11:34', '2014-10-29 11:11:34', '1')

显示创建表CalendarAppointment:

| CalendarAppointment | CREATE TABLE `CalendarAppointment` (  
`idAppointment` int(10) NOT NULL AUTO_INCREMENT,
  `codiCategory` blob,
  `codiPersona` blob,
  `nomePersona` blob,
  `comment` blob,
  `day` datetime NOT NULL,
  `description` blob,
  `from` datetime NOT NULL,
  `shortDescription` blob,
  `to` datetime NOT NULL,
  `modificatoDa` varchar(80) NOT NULL DEFAULT '',
  `dataModifica` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `idModifica` int(11) NOT NULL DEFAULT '0',
  UNIQUE KEY `idAppointment` (`idAppointment`)
) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8

有什么问题?

0 个答案:

没有答案