i have 2 table like this
---------tbl1----------------
id | name | lname |
1 j h
2 jj hh
and
---------tbl2----------------
_id | name | lname |
1 a b
2 aa bb
3 aaa ccc
i want to select from this 2 table like this:
---------result----------------
resultId | id | name | lname |
1 1 j h
2 2 jj hh
3 1 a b
4 2 aa bb
5 3 aaa ccc
but with select using join the result not this format! what can i do to access this select result?