Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
助けてください。私はこのSQLクエリを持っています:
SELECT l.url FROM (b INNER JOIN links ON b.parent_id = l.id) INNER JOIN b ON l.id = b.link WHERE l.url LIKE 'http://domain%' LIMIT 0, 30
そして、どういうわけかそれは言う
#1066 - Not unique table/alias: b
SELECT l.url from b inner join links as l on l.id = l.parent_id inner join b as b1 on b1.link = l.id where l.url like 'http:domain%' limit 0,30
このクエリでは、2 つのテーブルを最初に b と 2 番目のリンクに結合し、b1 エイリアスとして b を自己結合します。