我有两张table。名为“places”的主表:
还有一张标有“place\u meta”的第二张table:
在查询地点时,我想将具有相同地点id的地点\元表的行附加到地点结果。它应该看起来像:
{
id: 1,
slug: "test",
status: "active",
name: "test",
excerpt: "blah blah",
description: "bla blah blah",
test_url: "https://test.de",
test2_url: "https://test2.de"
}
或者类似的
{
id: 1,
slug: "test",
status: "active",
name: "test",
excerpt: "blah blah",
description: "bla blah blah",
meta: {
test_url: "https://test.de",
test2_url: "https://test2.de"
}
}
尝试了连接,但真的不知道如何得到这个愿望。
1条答案
按热度按时间bvjveswy1#
这将适用于两个预定义的元值(test\u url和test2\u url),但如果您有多个元字段,则这不是一个动态解决方案。