Av namnet att döma kan det vara en utsikt. Testa att använda DROP VIEW :
DROP VIEW uc_order_products_qty_vw
SLIPTA TABELL fungerar inte för visningar:
CREATE VIEW test_vw AS SELECT 1;
SELECT * FROM test_vw; -- works
DROP TABLE test_vw; -- error: Unknown table 'test_vw'
DROP VIEW test_vw; -- works