Is there a concat function in GQL? -
is there concat function in google query language?
given table x
fname |lname --------|------ bob |smith larry |potts
ask query:
select concat(fname, lname) x
i like:
bobsmith larrypotts
any ideas on how achive this?
just concatenate them manually aftewards:
query = gqlquery(...) result in query: fullname = result.fname+result.lname # fullname