I have a table defined as Table1 with rows below
Index Name Value
1 A 1.0 x
1 A 2.0 x
1 A 3.0 x
1 B 1.0
1 B 2.0
1 B 3.0
2 A 4.0 x
2 A 5.0 x
2 A 6.0 x
The output required is marked with x.
I need the output as all rows having the same names in a distinct index. If same index with a different name then ignore. Can anyone help with a simple-to-understand query.
Thanks
SanjayP
Index Name Value
1 A 1.0 x
1 A 2.0 x
1 A 3.0 x
1 B 1.0
1 B 2.0
1 B 3.0
2 A 4.0 x
2 A 5.0 x
2 A 6.0 x
The output required is marked with x.
I need the output as all rows having the same names in a distinct index. If same index with a different name then ignore. Can anyone help with a simple-to-understand query.
Thanks
SanjayP
Comment