Hi All,
I need a query help. Let say I have two tables.
Table_A with columns (id) and (SS)
Table_B with columns (b_s) and (e_s)
I want to output the range of values for SS that falles between table_A where id=b_s and id = e_s
My script look something like this. Now I need to get the range of all values of SS.
Anythoughts on this?
select distinct a.* from table_A a inner join table_B b on
a.id = b.b_s and a.id = b.e_s
I need a query help. Let say I have two tables.
Table_A with columns (id) and (SS)
Table_B with columns (b_s) and (e_s)
I want to output the range of values for SS that falles between table_A where id=b_s and id = e_s
My script look something like this. Now I need to get the range of all values of SS.
Anythoughts on this?
select distinct a.* from table_A a inner join table_B b on
a.id = b.b_s and a.id = b.e_s