九九百科網

位置:首頁 > 經驗 > 

ecshop如何刪除訂單

經驗1.48W

ecshop如何刪除訂單

ecshop刪除訂單,執行以下SQL語句(需要注意的是ecs_order_info裏的ecs_要換成你的數據表前綴):

刪除全部訂單:deleteFROM`ecs_order_info`

刪除未確認訂單:deleteFROM`ecs_order_info`whereorder_status='0'

刪除已取消訂單:deleteFROM`ecs_order_info`whereorder_status='2'

刪除已確認訂單:deleteFROM`ecs_order_info`whereorder_status='1'

標籤:ecshop