2021年5月3日星期一

Cannot drop the table 'tp_ladder', because it does not exist or you do not have permission

I have this code above and it shows an error on the DROP TABLE tp_ladder. I'm not quite sure how to fix it? And also I have not only one error like this, almost on every drop table row. Any advice?

DROP TABLE tp_ladder;    --creating ladder TABLE  CREATE TABLE tp_ladder  (      ladder_id       INTEGER,      ladder_type     VARCHAR(50),      ladder_name     VARCHAR(50) NOT NULL,      ladder_discount DECIMAL(3,2),      ladder_price    DECIMAL(8,2) NOT NULL,      ladder_weight   DECIMAL(5,2),      ladder_height   DECIMAL(5,2),      ladder_rating   DECIMAL(10,2),      warehouse_id    INTEGER  );  
https://stackoverflow.com/questions/67377248/cannot-drop-the-table-tp-ladder-because-it-does-not-exist-or-you-do-not-have May 04, 2021 at 08:12AM

没有评论:

发表评论