我需要将结果从SQL复制到剪贴板 - 这可能吗?
我需要将qty副本复制到剪贴板。
我的代码:
declare qty NUMBER;
part_no varchar(16);
begin
qty := (select qty from part_stock where part_no='012345');
if qty > 0 then
error_sys.Appl_General('', 'Item_no is on stock');
else
error_sys.Appl_General('', 'Item_no is not on stock');
end if;
end;
谢谢