得到表中的數據,我有一些問題,在查詢我有兩個表如何通過像查詢
appcp_sound_attributes
appcp_vocalize
appcp_sound_attributes
包含字段名 「name
」和appcp_vocalize
包含字段「attributes
」
我想使用類似的查詢如appcp_vocalize.attributes like '%' + appcp_sound_attributes.name + '%'
從「appcp_vocalize
」獲取數據
我的查詢是:
SELECT *
FROM appcp_vocalize
JOIN appcp_sound_attributes
ON appcp_vocalize.attributes LIKE '%appcp_sound_attributes.name%'
請給這個查詢的最佳解決方案
爲什麼不爲每個表添加2個主自動遞增列? – Mihai
@Mihai appcp_vocalize.attributes是json值我想通過like子句根據'appcp_sound_attributes.name'找到json數據 –
這是MySQL還是SQL Server?這些是獨立的數據庫。 – Tom