actor_id | first_name | last_name | last_update |
---|---|---|---|
‘3‘ | ‘ED‘ | ‘CHASE‘ | ‘2006-02-15 12:34:33‘ |
无
SQL:
insert or ignore into actor values(‘3‘,‘ED‘,‘CHASE‘,‘2006-02-15 12:34:33‘);
SQL-35 对于表actor批量插入如下数据,如果数据已经存在,请忽略,不使用replace操作
原文:https://www.cnblogs.com/kexiblog/p/10714857.html