我正在尝试对我的数据库进行查询,我想移动所有具有eventcodes.PRIORITY=1和g052013.WCODE=eventcodes.WCODE的行,如您所见,我将上个月的所有行复制到新的月。我得到的错误是:
#1136 - Column count doesn't match value count at row 1
我在表中有相同数量的列。
我在这里做错了什么?
这是我的查询:
insert into g062013
select g052013.pnumber,g052013.id,
g052013.Ccode,
g052013.WCODE,
g052013.ndate,
g052013.TIMECALL,
g052013.EventHandling,
g052013.Endtimecare,
g052013.User,
g052013.TIMEARRIAVAL,
g052013.FREEDATA,
g052013.sendtime from
g052013 RIGHT JOIN eventcodes ON g052013.WCODE=eventcodes.WCODE AND eventcodes.PRIORITY='1'
WHERE gyoman052013.EventHandling!=2