'm filtering records from 2 tables users
and temp_bach_users_registeration
on the base of email
both have some same emails but in query record is null
but when i individually search from both they show me records
in temp_bach_users_registeration
table i import records from CSV
is there this issue is because of csv ??
Query:
SELECT
users.email,
temp_bach_users_registeration.email
FROM
users, temp_bach_users_registeration
WHERE users.email = temp_bach_users_registeration.email
users table is MyISAM
and temp_bach_users_registeration is InnoDB
storage engine .
DB Structure of users table :
........
DB Structure of temp_bach_users_registeration table :
..........
can somebody help me to figure out this issue .
thanks .