I have three tables like this:
Table1
english | hindi
--------------
shakti | शक्ति
sharma | शर्मा
Table2
eng| hin
------------------
Jai |जय
Jo | जो
**Table3*
name | commo| price |
----------------------------------
shakti | jai | 123.00
sharma |jo | 224.00
anil | paddy | 1286.098
**I want to get result something like this*
hindi| hin | price
--------------------------
शर्मा | जो | | 224.00
Description :
there is no primary key in any table
I want all records where
**Table2* = 'जो'
I tried but I am not able to fetch the data correctly. Please help.