好的,这对我来说是一个新问题。正如我在之前的一个问题中提到的那样,我现在正在使用PtokaX并在其中编写一些机器人脚本。我现在需要做的是完全更新我的表,并交换两个特定列的值。我将所有用户的主聊天计数存储在一个名为的 MySQL 表中chatstats
(当前在 MyISAM 上,但考虑将表更改为 InnoDB)。
该表有很多行(近 1000 行),并且几乎每天都在增加。我想要做的是每周(和每月;如后所述)交换两列的值,并将其中一个列值设置为零。
我的表的创建语句是这样的:
CREATE TABLE `chatstat` (
`id` BIGINT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `username` VARCHAR(25) NOT NULL,
`totalcount` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0', `thismonth` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`thisweek` INT(10) UNSIGNED NOT NULL DEFAULT '0', `lastweek` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`lastmonth` INT(10) UNSIGNED NOT NULL DEFAULT '0', `switched` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`id`), UNIQUE INDEX `id` (`id`), UNIQUE INDEX `username` (`username`)
) COLLATE='utf8_general_ci' ENGINE=MyISAM ROW_FORMAT=DEFAULT;
现在,列名是不言自明的。我创建了该列switched
来检查用户的计数是否在每个星期天被交换(通过检查它是 1 还是 0)。每个星期天,我都想改变thisweek
withlastweek
和 that 的值,只有一次。目前,我的脚本如下(在 LUA 和 PtokaX 变量中)
function UpdateUserStat( con, user )
sNick = ConvertNick( user.sNick )
cur = assert( con:execute( string.format( [[SELECT * FROM chatstat WHERE username = '%s']], sNick ) ) )
row = cur:fetch( {}, "a" )
cur:close()
if row then
res = assert( con:execute( string.format( [[UPDATE chatstat SET totalcount = totalcount + 1 WHERE id='%d' ]], row.id ) ) )
else
res = assert( con:execute( string.format( [[ INSERT INTO chatstat ( username, totalcount, thismonth, thisweek ) VALUES ( '%s', 1, 1, 1 ) ]], sNick ) ) )
end
cur = assert( con:execute( string.format( [[SELECT * FROM chatstat WHERE username = '%s']], sNick ) ) )
row = cur:fetch( {}, "a" )
cur:close()
UpdateDateStat( con, row )
if os.date( "%w" ) ~= 0 then
if row.switched == 1 then
res = assert( con:execute( string.format( [[UPDATE chatstat SET switched = 0 WHERE id='%d' ]], row.id ) ) )
end
res = assert( con:execute( string.format( [[SELECT * FROM datestat WHERE field='today']] ) ) )
tRow = res:fetch( {}, "a" )
if tRow.value ~= os.date( "%w" ) then
ChangeWeekDay = assert( con:execute( string.format( [[UPDATE datestat SET value='%d' WHERE field='today']], os.date( "%w" ) ) ) )
end
res:close()
end
end
函数 datestat 只是保存带有日期的聊天日志(每天有多少消息等)。任何帮助将不胜感激。当前的 UpdateUserStat 函数对值的更改没有做任何事情(正如我昨天检查过的那样)。
PS 如果需要任何其他东西,并且我可以管理它,我将非常乐意提供它。:)