wp_burst_statistics_searches

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑IDintNO
statistic_idintYES
search_idintNO
result_countintNO
createdintNO

CREATE TABLE Statement

CREATE TABLE wp_burst_statistics_searches ( `ID` int NOT NULL AUTO_INCREMENT, `statistic_id` int, `search_id` int NOT NULL, `result_count` int NOT NULL DEFAULT 0, `created` int NOT NULL DEFAULT 0, PRIMARY KEY (ID), UNIQUE KEY statistic_search_unique (statistic_id, search_id) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative), 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_burst_statistics_searches`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Burst Statistics – Simple WordPress Analytics (Google Analytics Alternative)