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 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -