Viewing 7 posts - 1 through 7 (of 7 total)
Hi,
OK i can also prefer sys.objects, But situation is this, the user should not be given with the grant view any definition permission, but he needs to access...
April 4, 2012 at 7:36 am
table -1
vijay BE ECE
table-2
vijay ECE ...
May 6, 2011 at 7:30 am
Using the left join i can achieve only one record... but i want two more record respect to the values 'B' and 'C' in the table-2
May 6, 2011 at 7:09 am
As my table has 1000 above entries with 3 various languages, i expects a generic solution to join this, not only for this example table
May 4, 2011 at 5:00 am
Kindly look at the newly modified post
May 4, 2011 at 4:37 am
i am meaning to say that the query has to fetch the values for the all column in the column list with the language_id as NULL
for ex:
slno ...
May 4, 2011 at 3:58 am
I think this would be perfect:
select isnull(x.eno,c.eno),x.ano,x.bno,c.no
from (select isnull(a.eno,b.eno) 'eno',a.no 'ano', b.no 'bno'
from ep1 a full outer join ep2 b
on (a.eno=b.eno)) x full outer join ep3 c
on (x.eno=c.eno)
order by 1
Regards
Vijayakumar...
April 21, 2011 at 1:08 am
Viewing 7 posts - 1 through 7 (of 7 total)