i found this error when I enter this command
SELECT *
FROM Borrowed_Book , User
WHERE User.UserId=Borrowed_Book.UserId IN (
SELECT *
FROM Book , Book_version_info
WHERE
Book_version_info.PublisherID = 1 AND
Book.ISBN= Book_version_info.Book_ISBN
);
i cannot find what's the issue here and why i get this error I search on the internet but I don’t find the reason
First of all you should match your columns in the IN function:
SQL does not know what to do with that the columns should be same so try instead: