Microsoft
Software
Hardware
Network
Question : only unique values in query
the following is the rowsource for a combobox.
SELECT SUPPLIERpricing.ID, SUPPLIERpricing.TERM
FROM SUPPLIERpricing
ORDER BY SUPPLIERpricing.TERM;
this query returns
12
12
24
24
24
i want it to only return a number once
12
24
how can i adjust my query to do this
Answer : only unique values in query
Hello GTC-KTX,
Try :
1: 2: 3:
SELECT DISTINCT SUPPLIERpricing.ID FROM SUPPLIERpricing ORDER BY SUPPLIERpricing.TERM;
Open in New Window
Select All
Random Solutions
How do you test a dataset for the existance of a record?
Using an Enum to limit the property vales of a class
How do I use RecordSelectionFormula to pass dates via VS 2005 to Crystal report 2008?
SLOW DATA ACCESS TO WINDOWS 2008 R2 VIRTUAL
sql average syntax
Print a Filtered SubForm
VBA Excel: how to force sheet recalculating
access update set
Sucess Audit event id 540
'0' is not a valid value for 'value'. 'value' should be between 'minimum' and 'maximum'.