select split_part(usr_email,'@',2) ||split_part(usr_email,'@',1) from ..

Hi all,

I am reading through some docs on switching to Postfix with a SQL backend. The docs use MySQL but I want to use PgSQL so I am trying to adapt as I go. I am stuck though; can anyone help give me the PgSQL equiv. of:

SELECT CONCAT(SUBSTRING_INDEX(usr_email,'@',-1),'/',SUBSTRING_INDEX (usr_email,'@',1),'/') FROM users WHERE usr_id=1;

If the 'usr_email' value is '[EMAIL PROTECTED]' this should return 'domain.com/person'.

  Thanks for the help!

Madison

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to [EMAIL PROTECTED] so that your
      message can get through to the mailing list cleanly

Reply via email to