MySQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesMySQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 20th, 2000, 03:40 AM
Echo-Five Echo-Five is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Atlanta, GA
Posts: 3 Echo-Five User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to Echo-Five
I'm new to MySQL, but fairly adept with MS SQL Server. I've written the following select statement that fails with a syntax error when executed in MySQL. I have referred to the MySQL manual and toyed with the syntax a bit, but with no success. I am confident its not the CONCAT, as I have used the same CONCAT syntax elsewhere with success. Any guidance would be appreciated...

SELECT
CASE
WHEN sq.presuf = 0 THEN concat(pl.name, ' ', sq.tag)
ELSE concat( sq.tag,' ', pl.name)
END as name,
pl.email,
pl.icq
from squads sq, players pl
where sq.name = pl.squadname

Reply With Quote
  #2  
Old July 20th, 2000, 03:45 AM
Echo-Five Echo-Five is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Atlanta, GA
Posts: 3 Echo-Five User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to Echo-Five
whoops...thats
SELECT
CASE
WHEN sq.presuf = 0 THEN concat(pl.name, ' ', sq.tag)
ELSE concat( sq.tag,' ', pl.name)
END as name,
pl.email,
pl.icq
from squads as sq, players as pl
where sq.name = pl.squadname

Reply With Quote
  #3  
Old July 20th, 2000, 11:25 AM
rod k rod k is offline
Apprentice Deity
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237 rod k User rank is Private First Class (20 - 50 Reputation Level)rod k User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 m 8 sec
Reputation Power: 13
Send a message via AIM to rod k
It's not the concat as MySQL supports that, but MySQL does not support CASE.

You need to use an IF() construct:

select if(sq.presuf=0,concat(pl.name,' ',sq.tag),concat(sq.tag,' ',pl.name)) as name,
pl.email,
pl.icq
from squads sq, players pl
where sq.name=pl.squadname;

Note: you do NOT use AS when aliasing the table name... you had it correct in your first post.

Reply With Quote
  #4  
Old July 21st, 2000, 07:37 PM
Echo-Five Echo-Five is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: Atlanta, GA
Posts: 3 Echo-Five User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to Echo-Five
Thanks Rod..That worked perfectly.

According to the MySQL manual, case statements are supported, and the manual
also states that tables are aliased using 'as'. Pretty obvious case doesn't work the way it does in MS T-SQL tho...anyway, it worked, and thanks for your help!

Reply With Quote
  #5  
Old July 21st, 2000, 08:00 PM
rod k rod k is offline
Apprentice Deity
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237 rod k User rank is Private First Class (20 - 50 Reputation Level)rod k User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 m 8 sec
Reputation Power: 13
Send a message via AIM to rod k
Oops, you're right about using AS to alias tables, just never done it that way or seen it done that way.

You are also correct about CASE, however, are you using the correct manual for the version of MySQL you are running. CASE wasn't added until 3.23.3

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMySQL Help > CASE statements in MySQL


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
Stay green...Green IT