I have a query that pulls different data but for one field it concats it, since the URL is partially filled in my database:
select blah, blah2, blah3, concat('https://my_url.com', g.logourl ) as logourl but the problem is if logourl is blank then I just get https://my_url.com instead of the full URL. This is having down stream impact.
Is there a way to only concat if logurl is not null?