I have two Oracle databases. I am running the same query in both:
select * from accttreedetail ad where ad.scode >= '11100000' and ad.scode <= '11100000'
In both databases I have a record in the ad table with an scode = '11100000'
In database A I find no records and in database B I find records. If I change the query in database a to
select * from accttreedetail ad where ad.scode >= '11100000' and ad.scode <= '11100001'
I find its records.
What could be different about these two databases?
Thank you,
Deborah
select * from accttreedetail ad where ad.scode >= '11100000' and ad.scode <= '11100000'
In both databases I have a record in the ad table with an scode = '11100000'
In database A I find no records and in database B I find records. If I change the query in database a to
select * from accttreedetail ad where ad.scode >= '11100000' and ad.scode <= '11100001'
I find its records.
What could be different about these two databases?
Thank you,
Deborah