Jump to content

Stumped.. Invalid use of group function (MySQL)


pureDesi

Recommended Posts

I have this query being passed to MySQL:
[code]
UPDATE
forums, threads
SET
forums.lastThreadID=MAX(threads.threadID)-1,
forums.lastMemberID='5',
forums.numPosts = forums.numPosts+1,
threads.replies = threads.replies+1
WHERE
forums.forumID = threads.forumID
AND
threads.threadID = '3'";
[/code]

And I keep getting
[code]#1111 - Invalid use of group function [/code]

I have no clue why and I've tried a couple of different things, but to no avail. Any help would be appreciated.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.