I have a small lookup table, that looks like this:
ID Code Description Abbrev
----------- ---- --------------- -------
1 1 Bulk Bulk
2 2 Ring Ring
3 3 SPT SPT
5 4 Shelby Tube ST
I can write a query such as:
Select * From table
and 4 rows are returned. But if I sort on certain columns, no data is returned, and no error is encountered.
Select * From table Order By Description
returns no data. I can sort by ID or Code successfully, but when I use Description or Abbrev as my sort column, nothing is returned.
I have run Compact and Repair, which didn't help. Can anyone tell me what is happening?
Thanks
ID Code Description Abbrev
----------- ---- --------------- -------
1 1 Bulk Bulk
2 2 Ring Ring
3 3 SPT SPT
5 4 Shelby Tube ST
I can write a query such as:
Select * From table
and 4 rows are returned. But if I sort on certain columns, no data is returned, and no error is encountered.
Select * From table Order By Description
returns no data. I can sort by ID or Code successfully, but when I use Description or Abbrev as my sort column, nothing is returned.
I have run Compact and Repair, which didn't help. Can anyone tell me what is happening?
Thanks