Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_operational_data_table_name
Get the orders operational data table name.
Method of the class: OrdersTableDataStore{}
No Hooks.
Returns
String. The orders operational data table name.
Usage
$result = OrdersTableDataStore::get_operational_data_table_name();
OrdersTableDataStore::get_operational_data_table_name() OrdersTableDataStore::get operational data table name code WC 10.3.6
public static function get_operational_data_table_name() {
global $wpdb;
return $wpdb->prefix . 'wc_order_operational_data';
}