Je hebt drie afzonderlijke SELECT's nodig (en waarschijnlijk een zoekopdracht met jokertekens):
SELECT *
FROM tbl_books
WHERE title LIKE '%law%'
LIMIT 0,30
SELECT *
FROM tbl_books_author
WHERE title LIKE '%law%'
LIMIT 0,30
SELECT *
FROM tbl_books_subject
WHERE title LIKE '%law%'
LIMIT 0,30
Als u compatibele resultaten retourneert, kunt u ze UNION:
SELECT 'book ', title
FROM tbl_books
WHERE title LIKE '%law%'
UNION ALL
SELECT 'author ', author
FROM tbl_books_author
WHERE title LIKE '%law%'
UNION ALL
SELECT 'subject', subject
FROM tbl_books_subject
WHERE title LIKE '%law%'
LIMIT 0,30