em need help with the mysql =)

Status
Not open for further replies.

LilAlexxx

New Member
Messages
8
Reaction score
0
Points
0
CREATE ALGORITHM = UNDEFINED DEFINER = `root`@`localhost` SQL SECURITY DEFINER VIEW `readable_cheatlog` AS SELECT `a`.`name` AS `accountname` , `a`.`id` AS `accountid` , `c`.`name` AS `name` , `c`.`id` AS `characterid` , `cl`.`offense` AS `offense` , `cl`.`count` AS `count` , `cl`.`lastoffensetime` AS `lastoffensetime` , `cl`.`param` AS `param`
FROM (( `cheatlog` `cl`
JOIN `characters` `c`
)
JOIN `accounts` `a`
)
WHERE (( `cl`.`cid` = `c`.`id`
)
AND ( `a`.`id` = `c`.`accountid`
)
AND ( `a`.`banned` =0
)
);

MySQL said:
#1227 - Access denied; you need the SUPER privilege for this operation


how Can I Fix This TY
 
Status
Not open for further replies.
Top