我的备份文件中有一个 sql 查询,它有大量的插入语句。
插入
tns_spo_hotel
(id_spo
,id_hotel
) 值 (523,149),(523,195), ...
我在两列上都有一个外键。
当我运行此查询时,它返回
#1452 - Cannot add or update a child row: a foreign key constraint fails (`tsakhkad_tour_new`.`tns_spo_hotel`, CONSTRAINT `tns_spo_hotel_22` FOREIGN KEY (`id_hotel`) REFERENCES `tns_hotel` (`id`) ON DELETE CASCADE ON UPDATE CASCADE)
因为有一些行,缺少值。
是否可以忽略该错误消息并继续执行 sql ?