So I have a table
Books
id, name, organisationId, status
so, now what I want to get is the books with an organisationId as 3. which is ...
SELECT * FROM books where id= '3'
the problem is that I cant think of a way, where I could also get the books with status as public irrespective of organisationId.
I'm new to understanding mysql queries thats why I'm asking this so that I can understand.