當前位置:趣味科普網>經驗>

ecshop如何刪除訂單

經驗 閱讀(1.51W)

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'