wp_burst_search_terms
StaticStores burst search terms data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int | NO |
| date | date | NO |
| query | varchar(191) | NO |
| property | varchar(191) | NO |
| clicks | int | NO |
| impressions | int | NO |
| ctr | float | NO |
| position | float | NO |
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)