MySQL to Create an HTML Hyperlink from an URL
SELECT url,href FROM tbl_password where private = '1' and url NOT like '%squid%';
update tbl_password
set href=concat('< a href="',url,'">',url,'< /a>')
where private = '1' and url NOT like '%squid%';
I really wanted to strip the http:// off the anchor text as well
update tbl_password
set href=concat('< a href="',url,'">',SUBSTRING(url,7),'< /a>')
where private = '1' and url NOT like '%squid%' ;
Note here how flexible concat is with multiple parameters
update tbl_password
set href=concat('< a href="',url,'">',url,'< /a>')
where private = '1' and url NOT like '%squid%';
I really wanted to strip the http:// off the anchor text as well
update tbl_password
set href=concat('< a href="',url,'">',SUBSTRING(url,7),'< /a>')
where private = '1' and url NOT like '%squid%' ;
Note here how flexible concat is with multiple parameters

