Thus spake Oliver Elphick
>   SELECT col1, col2,..., areacode || phone as phone, colx, coly,...

Although you may want this for easier reading.

SELECT col1, col2,..., (areacode || ' ') || phone as phone, colx, coly,...

Also, I would do "as fullphone" instead so that I don't get confused
between the field name and my generated string but that's mainly a
style issue.

-- 
D'Arcy J.M. Cain <darcy@{druid|vex}.net>   |  Democracy is three wolves
http://www.druid.net/darcy/                |  and a sheep voting on
+1 416 425 1212     (DoD#0082)    (eNTP)   |  what's for dinner.

Reply via email to