Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
usafelix
Posting Yak Master
165 Posts |
Posted - 2014-06-25 : 05:37:54
|
I have two table and using of inner join. The query statement isselect * from A inner join A.project_no = B.Project_noTable AProject_no 120270HK.0000010.10Z00009.10Table B Project_no130270NT.0000010.10Z00009.10The output is 12027hk.0 and 000010.10 and 130270NT.0 and missing ofZ0009.10. How I can show all records include "Z000009.10" record? |
|
ahmeds08
Aged Yak Warrior
737 Posts |
Posted - 2014-06-25 : 05:44:58
|
select * from tablea Ainner join tableb Bon A.project_no=B.project_noJaveed Ahmed |
|
|
|
|
|