0

I have 2 tables: "tbl_file" and "tbl_product"

I need to retrieve all data from both tables where "tbl_file" has a name, city, country and license number. Table "tbl_product" only stores the brand and type of product(1 - 5).

My problem is that when i try to retrieve data and it only display the "tbl_file" data only and empty for "tbl_product".

Below is the code :

$sql = "SELECT tbl_file.* ,tbl_product.* 
        FROM tbl_file ,tbl_product 
        WHERE CompName LIKE '%$company_name%' 
           OR License_No LIKE '%$License_no%'";
RiggsFolly
  • 93,638
  • 21
  • 103
  • 149
rat21ful
  • 1
  • 2

0 Answers0