If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > MySQL 4.0: why my SQL syntax wrong?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-13-06, 12:51
intenter intenter is offline
Registered User
 
Join Date: Feb 2006
Posts: 2
MySQL 4.0: why my SQL syntax wrong?

Good day.

I cannot query my MySQL 4.0 database.

When I try to execute:

Code:
SELECT T.NAME, C.CNT
FROM TAGS T
INNER JOIN (
SELECT TAG_ID, COUNT(*) AS CNT
FROM TAGS_FEEDS
GROUP BY TAG_ID
HAVING CNT >=1
) C ON C.TAG_ID = T.ID
I recieve:

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT TAG_ID, COUNT( * ) AS CNT
FROM TAGS_FEEDS GROUP BY T

This query works fine on MySQL 4.1 on the database having same structure. So, why old server cannot execute this query and how should i change it?

Thanks.
Reply With Quote
  #2 (permalink)  
Old 02-14-06, 07:32
yuwei yuwei is offline
Registered User
 
Join Date: Feb 2006
Posts: 2
subquery maybe not supported in version 4

Hi!

If I remember right the subquery in MySQL was not supported in 4.0 but in 4.1

I had experienced similar problem before and my suggestion is you upgrade MySQL to 4.1 or version 5, or try to program around the limitation.

/Wei
Reply With Quote
  #3 (permalink)  
Old 02-14-06, 09:41
intenter intenter is offline
Registered User
 
Join Date: Feb 2006
Posts: 2
Unfortunateny, You are right. I didn't thing that 4.0 and 4.1 have serious changes. I was wrong.

Thank you for reply.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On