Sections

ERROR
Database Error

Server Address: localhost
Server Username: hlxce

Error Diagnostic:
Bad query.

Server Error: (1055) Expression #5 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'hlxce.hlstats_Actions.reward_player' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

Last SQL Query:
			SELECT
				hlstats_Events_PlayerActions.playerId,
				hlstats_Players.lastName AS playerName,
				hlstats_Players.flag as flag,
				COUNT(hlstats_Events_PlayerActions.id) AS obj_count,
				COUNT(hlstats_Events_PlayerActions.id) * hlstats_Actions.reward_player AS obj_bonus
			FROM
				hlstats_Events_PlayerActions, hlstats_Players, hlstats_Actions
			WHERE
				hlstats_Actions.code = 'Rescued_A_Hostage' AND
				hlstats_Players.game = 'csgo' AND
				hlstats_Players.playerId = hlstats_Events_PlayerActions.playerId AND
				hlstats_Events_PlayerActions.actionId = hlstats_Actions.id AND
				hlstats_Players.hideranking = '0'
			GROUP BY
				hlstats_Events_PlayerActions.playerId
			ORDER BY
				obj_count desc,
				playerName desc
			LIMIT 0,40