wp_aieo_adv_stats_orders_rn_copy
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| EponymousId | INT | YES |
| OrderId | BIGINT | YES |
| OrderDate | DATETIME | YES |
| OrderItemsTotal | DECIMAL(10,2) | YES |
| rn | INT | YES |
CREATE TABLE Statement
CREATE TABLE wp_aieo_adv_stats_orders_rn_copy ( EponymousId INT, OrderId BIGINT, OrderDate DATETIME, OrderItemsTotal DECIMAL(10,2), rn INT, INDEX idx_eponymous (EponymousId), INDEX idx_eponymous_rn (EponymousId, rn) ) ENGINE
Safe to delete?
If you have uninstalled AI eShop Optimizer, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_aieo_adv_stats_orders_rn_copy`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI eShop Optimizer