In my project(online shopping website), I have a search box like flipkart website. After enter a search keyword the result of 4 table will show in a page.
Table : `tbl_product`
Field : `id`,`date`,`title`,`model_no`,`quantity`,`category_id`,`brand_id`,`color`,`size`
Table : `tbl_brand`
Field : `id`,`date`,`brand_name`,`category_id`,`description`
Table : `tbl_category`
Field : `id`,`date`,`category_title`, `description`
Table : `tbl_product_specification`
Field : `id`, `date`, `product_id`,`specification_title`
Now, I want to get search result of $keyword variable as:
`title`,`model_no` from `tbl_product`
`brand_name` from `tbl_brand`
`category_title` from `tbl_category`
`specification_title` from `tbl_product_specification`
I'm not good in MySQL SQL query. So, what SQL will complete this?
Maybe something like this?