我正在使用类似子句的内连接..
我试过的sql是
SELECT tbl_songs.id AS sid,
tbl_songs.name AS sname,
tbl_albums.id AS aid,
tbl_albums.name AS aname
FROM tbl_songs
INNER JOIN tbl_albums
ON tbl_songs.albums LIKE '%' + tbl_albums.name + '%';
Run Code Online (Sandbox Code Playgroud)
它显示我语法错误.
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '+ tbl_albums.name + '%'' at line 2
Run Code Online (Sandbox Code Playgroud)
请详细说明语法错误的原因.