I have two tables.
table 1:
-------------------------------
| product_id | product number |
-------------------------------
| 1001 | 67E432D |
| 1002 | 888CDE32 |
| 1003 | 54D32EC2 |
-------------------------------
table 2:
--------------------------
| product_id | desc |
--------------------------
| 1001 | product 1 |
| 1003 | peoduct 3 |
--------------------------
After joining table 1 and table 2 I get the following result.
-------------------------------------------
| product_id | product number | desc |
-------------------------------------------
| 1001 | 67E432D | product 1 |
| 1002 | 888CDE32 | |
| 1003 | 54D32EC2 | product 3 |
-------------------------------------------
Now as you can see that the 'desc' column of product 3 is empty now. How may I have a 0 in that column? Something like:
-------------------------------------------
| product_id | product number | desc |
-------------------------------------------
| 1001 | 67E432D | product 1 |
| 1002 | 888CDE32 | 0 |
| 1003 | 54D32EC2 | product 3 |
-------------------------------------------
There might be some function which can do the job but I guess I am not aware of it..yet.