Why SQL Query with LEFT JOIN is giving this result? – Mysql
I have the following tables defined by: CREATE TABLE db.books ( id INT auto_increment not NULL, title varchar(100) NULL, category_id INT NULL, PRIMARY key (id) ) CREATE TABLE db.books_categories ( id INT auto_increment not NULL, category varchar(100) NULL, PRIMARY key…