0

Google Query Language 中是否有 concat 函数?

给定表 X

FName   |LName
--------|------
Bob     |Smith
Larry   |Potts

问询:

Select Concat(FName, LName) from X

我想:

BobSmith
LarryPotts

关于如何实现这一目标的任何想法?

4

1 回答 1

0

之后手动连接它们:

query = GqlQuery(...)
for result in query:
    fullname = result.FName+result.LName
    # Do something with fullname
于 2013-07-13T15:14:50.820 回答