NC Cloud 错误的录入了物料如何从数据库删除?
假设错误录入的物料分类为GD开头。
#备份表
CREATE TABLE bd_material20200331 AS SELECT * FROM bd_material;
#删除GD开头分类的物料
delete from bd_material where pk_marbasclass in (select pk_marbasclass from bd_marbasclass where code like 'GD%');
没有找到相关结果
已邀请:
1 个回复
nccloud
假设错误录入的物料分类为GD开头。