What is wrong with this query?
SELECT gid, (tex1||' '||tex2) AS ident FROM my_table ;
The structure of my_table is as follow:
gid serial NOT NULL
tex1 CHARACTER VARYING(254)
tex2 CHARACTER VARYING(254)
The content of my_table is:
gid | tex1   | tex2
----+--------+--------
1   | A      | dog
2   | Two    | birds
3   | More   | things
The result of the query is:
gid | ident
----+-------
1   |
2   |
3   |
I would have never thought having troubles with such a simple query...
Thanks for help !

