Error 1066: Not Unique Table/Alias: 'user'
在SQL 中遇到錯誤1066 時,表示某個表或別名查詢中使用的已被多次引用,但沒有唯一識別碼。在提供的程式碼中,錯誤是由於「user」表在沒有別名的情況下連接兩次而引起的:
SELECT article.* , section.title, category.title, user.name, user.name FROM article INNER JOIN section ON article.section_id = section.id INNER JOIN category ON article.category_id = category.id INNER JOIN user ON article.author_id = user.id LEFT JOIN user ON article.modified_by = user.id WHERE article.id = '1'
要解決此問題,應為「user」表的第二次引用分配一個別名。這可以區分兩個實例,並允許資料庫區分它們:
SELECT article.* , section.title, category.title, user.name, u2.name FROM article INNER JOIN section ON article.section_id = section.id INNER JOIN category ON article.category_id = category.id INNER JOIN user ON article.author_id = user.id LEFT JOIN user u2 ON article.modified_by = u2.id WHERE article.id = '1'
在此修改後的程式碼中,對「user」表的第二個引用被指派了別名「u2」。這允許資料庫區分兩個實例並解決錯誤。
以上是如何解決 SQL 錯誤 1066:表/別名不唯一?的詳細內容。更多資訊請關注PHP中文網其他相關文章!