I want to fetch records from first table & check that records are exist in second table or not:
tbl_user
userid email
-------------------------
1 [email protected]
2 [email protected]
3 [email protected]
4 [email protected]
5 [email protected]
tbl_user_responce
id responce_email
-------------------------
1 [email protected]
2 [email protected]
3 [email protected]
4 [email protected]
5 [email protected]
UPDATE
Note: In my secord table email is stored in xml format like following:
<?xml version="1.0" encoding="UTF-8"?>
<user>
<userinfo>
<email>[email protected]</email>
<status>1</status>
<description>Success</description>
</userinfo>
</user>
i want to fetch those records that are not exist in tbl_user_responce from tbl_user
So from above records i want result like
Email
-----
[email protected]
[email protected]
Does anybody know how to manage that?
Thanks in advance.