#2
pracy872018-11-30 21:19
|
现在有2张表
author字段是 title 和 author
只有本站会员才能查看附件,请 登录
holding
字段是 barcode和 callno
只有本站会员才能查看附件,请 登录
现在是想查询author表的title和holding表中的barcode字段相同的值,然后。将author中auth的值,添加到holding中的callno
这是我写的 update holding h set h.CALLNO = (select a.AUTH from AUTHOR a where a.TITLE=h.BARCODE),这条语句错误了,他把我holding中callno全部变成null