⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 db.sql

📁 关于NETFLOW信息分析的软件。 is a netflow analyzer. It uses MySQL database to store accounting information. Fil
💻 SQL
字号:
DROP TABLE IF EXISTS `acct`;

CREATE TABLE `acct` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `record_time` datetime default NULL,
  `address` int(10) unsigned NOT NULL default '0',
  `total_input` bigint(20) NOT NULL default '0',
  `total_output` bigint(20) NOT NULL default '0',
  `internal_input` bigint(20) NOT NULL default '0',
  `internal_output` bigint(20) NOT NULL default '0',
  `tashix_input` bigint(20) NOT NULL default '0',
  `tashix_output` bigint(20) NOT NULL default '0',
  `external_input` bigint(20) NOT NULL default '0',
  `external_output` bigint(20) NOT NULL default '0',
  `protocol` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `Index_2` (`record_time`,`address`,`protocol`)
) ENGINE=MyISAM DEFAULT PACK_KEYS=1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -