D
demusoli
@ All, I do not know, how to get my query done. Here is the situation:
I have a table with the following data:
Table:
JobNo as String
Device as String
Price as double
Data:
JobNo Device Price
--------------------------------------
123 DeviceA $100
123 DeviceB $110
123 DeviceC $115
124 DeviceA $200
124 DeviceB $195
124 DeviceC $215
The result I would like to have is:
JobNo Device Price
--------------------------------------
123 DeviceA $100
124 DeviceB $195
Basically I am looking for a query, which returns the cheapest device,
to produce the job.
Thanks in advance,
Oliver
I have a table with the following data:
Table:
JobNo as String
Device as String
Price as double
Data:
JobNo Device Price
--------------------------------------
123 DeviceA $100
123 DeviceB $110
123 DeviceC $115
124 DeviceA $200
124 DeviceB $195
124 DeviceC $215
The result I would like to have is:
JobNo Device Price
--------------------------------------
123 DeviceA $100
124 DeviceB $195
Basically I am looking for a query, which returns the cheapest device,
to produce the job.
Thanks in advance,
Oliver