表结构:
create table if not exists movieticket
(
ticketid bigint unsigned not null auto_increment primary key,
moviehall varchar(20) not null, #票厅
moviename varchar(50) not null, #影片
movienameex varchar(20) not null,  #影片扩展名(数字,3D等)
seatrow int unsigned not null, #座位行
seatcol int unsigned not null, #座位列
seattype varchar(50) not null,  #座位类型
tickettype varchar(50) not null, #票类
ticketprice int unsigned not null, #票价
ticketnum int unsigned not null, #票号
selldate date not null, #日期
selltime time not null, #时间
scene int unsigned not null #场次
);insert into movieticket values (1, '一厅', "大地震", "数字", 1, 1,"普通", "普通", 30, 100728001, '2010-07-28', '14:00', 1);
在表中插入这么一条语句,却出错了,请大家帮忙看看了。错误信息:
Error Code: 1366 Incorrect string value: '\xE4\xB8\x80\xE5\x85' from column 'moviehall' at row 1