标签: mysql
它可以在表格中连接字段。
但是我想知道你是否可以连接两个字段,其中“a”在categories表中,“other”在products表中,骨骼在不同的表中使用mysql。
答案 0 :(得分:1)
喜欢这个?:
SELECT CONCAT(tableOne.stringOne, tableTwo.stringTwo) FROM tableOne, tableTwo WHERE tableOne.joinField = tableTwo.joinField;