wp_ahc_keywords
StaticStores ahc keywords data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑kwd_id | INT(11) UNSIGNED | NO |
| kwd_ip_address | VARCHAR(50) | NO |
| kwd_keywords | VARCHAR(200) | NO |
| kwd_referer | VARCHAR(300) | NO |
| srh_id | INT(3) UNSIGNED | NO |
| ctr_id | INT(5) UNSIGNED | YES |
| bsr_id | INT(3) UNSIGNED | NO |
| kwd_date | DATE | NO |
| kwd_time | TIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `ahc_keywords` ( `kwd_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`kwd_id`), `kwd_ip_address` VARCHAR(50) NOT NULL, `kwd_keywords` VARCHAR(200) NOT NULL, `kwd_referer` VARCHAR(300) NOT NULL, `srh_id` INT(3) UNSIGNED NOT NULL, `ctr_id` INT(5) UNSIGNED NULL, `bsr_id` INT(3) UNSIGNED NOT NULL, `kwd_date` DATE NOT NULL, `kwd_time` TIME NOT NULL ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled Visitor Traffic Real Time Statistics, 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_ahc_keywords`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Visitor Traffic Real Time Statistics