我想導入我的舊數據庫,但這給了我一些錯誤什麼使它不可能即時通訊也搜索谷歌30分鐘,我找不到任何解決方案?MySQL查詢錯誤#1064?
SQL-query:
CREATE TABLE `UG_blogs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`catid` int(11) NOT NULL,
`ownerid` int(11) NOT NULL,
`content` text NOT NULL,
`date` datetime NOT NULL DEFAULT TIMESTAMP,
PRIMARY KEY (`id`), KEY id(`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
MySQL meldt: Documentatie
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '
PRIMARY KEY (`id`), KEY id(`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT C' at line 6
這給了我以下錯誤:#1067 - 對「日期」 –
我使用無效的默認值:44年5月5日,MariaDB的 但生病給它一個鏡頭 –
@MennovanHout。 。 。 MariaDB * *(基本上)是MySQL,所以5.6或更高版本應該支持'datetime'和默認值。 –