Hi
I have two tables mentioned below.i need to to merge these two tables and get the required output
Table 1
Name Upload
Rakesh 500
Mahesh 740
Rahul 0
Sanjay 600
Table 2
Name Download
Rakesh 200
Sanjay 120
Sambit 290
Output: from the above two tables
Name Uploads Download
Rakesh 500 200
Mahesh 740 0
Rahul 0 0
Sanjay 600 120
Sambit 0 290
Note:These Name are coming from user table.
Thanks
Santosh