Reported by: 24
Owned by: WingZero
Component: Bots - Other
Priority: normal
Severity: minor
Description:
For some reason there's duplicates in tblCallNewb and this JUST started happening after the creation of TW-WelcomeBot.
Here's the code to use in /pma to identify the duplicates.
SELECT CN.* FROM trench_TrenchWars.tblCallNewb AS CN
JOIN (SELECT fcUserName FROM trench_TrenchWars.tblCallNewb
GROUP BY fcUserName
HAVING COUNT(1) >= 2) AS CN1
WHERE CN.fcUserName = CN1.fcUserName
LIMIT 100
Please review and fix. I won't remove the duplicates until after the problem has been identified.
Trac Ticket #887 accepted defect
For some reason there's duplicates in tblCallNewb and this JUST started happening after the creation of TW-WelcomeBot.
Here's the code to use in /pma to identify the duplicates.
SELECT CN.* FROM
trench_TrenchWars
.tblCallNewb
AS CN JOIN (SELECT fcUserName FROMtrench_TrenchWars
.tblCallNewb
GROUP BY fcUserName HAVING COUNT(1) >= 2) AS CN1 WHERE CN.fcUserName = CN1.fcUserName LIMIT 100Please review and fix. I won't remove the duplicates until after the problem has been identified.
-24