C/C++教程

SQL35 批量插入数据,不使用replace操作

本文主要是介绍SQL35 批量插入数据,不使用replace操作,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

描述

题目已经先执行了如下语句:

drop table if exists actor;
CREATE TABLE actor (
   actor_id  smallint(5)  NOT NULL PRIMARY KEY,
   first_name  varchar(45) NOT NULL,
   last_name  varchar(45) NOT NULL,
   last_update  DATETIME NOT NULL);
insert into actor values ('3', 'WD', 'GUINESS', '2006-02-15 12:34:33');

对于表actor插入如下数据,如果数据已经存在,请忽略(不支持使用replace操作)

actor_idfirst_namelast_namelast_update
'3''ED''CHASE''2006-02-15 12:34:33'

insert or ignore into actor
values (3,'ED','CHASE','2006-02-15 12:34:33')

这篇关于SQL35 批量插入数据,不使用replace操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!