我有以下表格:
表格1:
col:
20kasi
30kasi
40eswar
00eswar
表2:
col:
00kasi
05kasi
06kasi
03eswar
44eswar
我想通过忽略数字以他们的名字加入这两个,以便我可以获得其他列。
select {something from each tables}
from table1, table2
where t1.col1 = t2.col2
它应该显示:
col {other colums from one of tables after join}
kasi ---- ----- \n
eswar ---- -----
这没有正确的语法。但我想要这样。有什么建议么??