gpt4 book ai didi

mysql - 更新完整的表,交换列

转载 作者:行者123 更新时间:2023-11-29 14:31:48 26 4
gpt4 key购买 nike

好的,这对我来说是一个新问题。正如我在之前的一个问题中曾经提到的,我现在正在使用 PtokaX 并在其中编写一些机器人脚本。我现在需要做的是完全更新我的表,并交换两个特定列的值。我将所有用户的主要聊天计数存储在名为 chatstats 的 MySQL 表中(当前在 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)。每个星期日,我都想用 lastweek 更改 thisweek 的值,而且也只更改一次。目前,我的脚本如下(在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 函数对于值的更改没有执行任何操作(正如我昨天检查的那样)。

P.S. 如果还需要任何东西,并且我可以做到,我将非常乐意提供。 :)

最佳答案

update chatstat set lastweek = thisweek, thisweek = 0, switched = NOW() 
where WEEK(switched) <> WEEK(NOW()) and (DAYOFWEEK(NOW()) = 1);

关于mysql - 更新完整的表,交换列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9870991/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com