テーブルの作成時に日時エラーが報告されます。理由がわかりません。
元曦
元曦 2017-08-21 11:52:27
0
3
1422

[SQL] create table s7_note

(

id mediaint unsigned not null auto_increment comment 'Id',

title varchar(100) not null comment '标题' ,

content longtext not null comment 'コンテンツ',

addtime datetime not null default current_timestamp comment '追加時間',

ip int not null comment 'IP地址',

プライマリキー(id)

)engine=InnoDB デフォルトの文字セット utf8 コメント '留言表';

[Err] 1067 - 'addtime のデフォルト値が無効です'


元曦
元曦

全員に返信(3)
逸先生
create table s7_note
(
  id mediumint unsigned not null auto_increment comment 'Id',
  title varchar(100) not null comment '标题',
  content longtext not null comment '内容',
  addtime datetime not null default '' comment '添加时间',
  ip int not null  comment 'IP地址',
  primary key(id)
)engine=InnoDB default charset utf8 comment '留言表';

#最も簡単な方法はデフォルト値を変更するだけです

いいねを押す +1
Peter_Zhu

datetime と current_timestamp は、理論的には、それらの値は同じです。ただし、current_timestamp は読み取り時と書き込み時に自動変換処理があり、値の範囲も異なります。 current_timestamp は変数として考えることができます。これは、読み書き時に変換する必要があるため、舞台裏で密かにフォーマットする date() 関数があると考えることができます。この時点で表現になります。

アップグレードすることをお勧めします。または、値または定数を変更して日時を初期化します。

いいねを押す +1
Peter_Zhu

MySQL 5.6 以降にアップグレードしてください

いいねを押す +1
  • 返事 他に代替手段はありませんか?
    元曦 著者 2017-08-21 14:14:07
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!