实体 SQL 连接
我在 Entity SQL 中有一个返回简单字符串的选择,我应该连接到一个字符串。
select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y
例如,它返回 3 个字符串,我应该将其连接到 1 个字符串。
I have a select in Entity SQL that returns simple strings, and I should concatenate to a string.
select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y
For example it returns 3 string and I should concatenate it to 1 string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您是否想要连接所有行或每行,但这是每行解决方案:
如果您想要单个结果,您将需要以下内容:
I'm not sure if you want to concatenate all rows or per row, but this is a per row solution:
If you want a single result you'll need the following: