wp_ahc_keywords

Static

Stores ahc keywords data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑kwd_idINT(11) UNSIGNEDNO
kwd_ip_addressVARCHAR(50)NO
kwd_keywordsVARCHAR(200)NO
kwd_refererVARCHAR(300)NO
srh_idINT(3) UNSIGNEDNO
ctr_idINT(5) UNSIGNEDYES
bsr_idINT(3) UNSIGNEDNO
kwd_dateDATENO
kwd_timeTIMENO

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