wp_burst_search_terms

Static

Stores burst search terms data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDintNO
datedateNO
queryvarchar(191)NO
propertyvarchar(191)NO
clicksintNO
impressionsintNO
ctrfloatNO
positionfloatNO

CREATE TABLE Statement

CREATE TABLE wp_burst_search_terms ( `ID` int NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `query` varchar(191) NOT NULL, `property` varchar(191) NOT NULL, `clicks` int NOT NULL DEFAULT 0, `impressions` int NOT NULL DEFAULT 0, `ctr` float NOT NULL DEFAULT 0, `position` float NOT NULL DEFAULT 0, PRIMARY KEY (ID) ) $charset_collate;" );

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_search_terms`;

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

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