Google Query Language 中是否有 concat 函数?
给定表 X
FName |LName
--------|------
Bob |Smith
Larry |Potts
问询:
Select Concat(FName, LName) from X
我想:
BobSmith
LarryPotts
关于如何实现这一目标的任何想法?
Google Query Language 中是否有 concat 函数?
给定表 X
FName |LName
--------|------
Bob |Smith
Larry |Potts
问询:
Select Concat(FName, LName) from X
我想:
BobSmith
LarryPotts
关于如何实现这一目标的任何想法?