[STAB]
SNAME STYPE SKEY SVAL
service-001 web KEY1 1000
service-001 web KEY2 2000
service-001 web KEY3 3000
service-001 web KEY4 4000
service-002 web KEY1 2000
service-002 web KEY2 1000
service-002 web KEY3 3000
service-002 web KEY4 4000
service-003 web KEY1 1000
service-003 web KEY2 2000
service-003 web KEY3 1000
service-003 web KEY4 2000
service-004 web KEY1 4000
service-004 web KEY2 2000
service-004 web KEY3 3000
service-004 web KEY4 5000
service-005 web KEY1 1000
service-005 web KEY2 2000
service-005 web KEY3 3000
service-005 web KEY4 4000
i'd like to know how I can get the inconsitant SVAL for the SKEY using SQL.
Here is the expected result:
service-002 web KEY1 2000
service-002 web KEY2 1000
service-003 web KEY3 1000
service-003 web KEY4 2000
service-004 web KEY1 4000
service-004 web KEY4 5000
In Excel, I created a new column concatenating SKEY+SVAL and I remove duplicates on that column. And then, I leave out the first consistent set [of service-001]. And I got the above expected result.
Thanks and regards,
W
KEY1 1000
KEY2 2000
KEY3 3000
Key4 4000
This are the correct values, you want teh result where this is not matching?
If yes
then try one this
create on new table having two fileds Key and Val , save tablename KeyVal
lokks like ths i
Key Val
KEY1 1000
KEY2 2000
KEY3 3000
Key4 4000
Join this table with orignal table like below ,you will get incosistent resultset
Select * from STAB
where Not Exists in
(
Select S.* from STAB S
Inner join KeyVal K on S.SKEY = K.Key and S.SVAl=L.Val)