有以下两张表和及表结构:
① 表名:customer(客户表)
表结构:cust_id varchar(10) not null primary key
cust_name varchar(30) not null -- 客户姓名
cust_address varchar(20) not null -- 地址
cust_city varchar(15) not null -- 城市
cust_state varchar(2) not null -- 州
cust_phone int -- 电话
cust_zip varchar(5) not null -- 邮编
cust_fax int -- 传真
② 表名:orders(订单表)
表结构:
ord_num varchar(10) not null primary key -- 订单编号
cust_id varchar(10) not null -- 客户id
qty int -- 数量
ord_date datetime -- 订单日期
使用子查询编写一个SQL语句来更新表customer,找到ord_num列中订单号为23E934的顾客,并把顾客的名字修改为“davMarker”,请将下面SQL语句补充完整 ()
____ customer ____ cust_name ='davMarker’ where cust_id ____ (select cust_id from orders where ord_num='23E934’)
A:alter,put,in
B:update,put,in
C:update,set,=
D:alter,put,=