My Query looks like this

SELECT Distinct tm.teamid,tm.Team_Name,CONCAT_WS(' ',tu.FirstName+' '+tu.LastName) as Leader  FROM tblGameRelation tgr 
LEFT JOIN tblTeam tm ON tgr.teamid = tm.teamid AND tgr.gameid = 62
LEFT JOIN tblUsersRelation tur ON tgr.typeid=tur.typeid AND tur.usertypeid=1
LEFT JOIN tblUsers tu ON tu.UserId= tur.UserId 

My Problem is that when "Leader" field is Blank it should display "-" a Dash.I tried using if null but its not working, not sure if Mysql can do this, i know its possible in MSSQL SERVER

link|improve this question

62% accept rate
feedback

1 Answer

up vote 5 down vote accepted

COALESCE() is your friend here:

COALESCE(CONCAT_WS(' ', tu.FirstName, tu.LastName), '-') AS leader

COALESCE() will pick the first expression, value or field given to it that isn't NULL and returns it.

link|improve this answer
1  
+1. Change the concatenation from CONCAT_WS(' ',tu.FirstName+' '+tu.LastName) to CONCAT_WS(' ', tu.FirstName, tu.LastName). – Shef Nov 5 '11 at 15:25
Well that was a silly mistake. Thanks @Shef. – JamWaffles Nov 5 '11 at 15:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.