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
Sharepoint 2003 with Recycle Bin
Leading zeros
Word 2007 VBA Macros Disappear
Getting the duration of an audio file using VB.NET
How to change a font in VFP 9.0
SQL statement to create dataset where table date field is > than a datepicker.value
Determine the closest word in the list.
Intercept the "You must enter a value in the "FormName.FieldName' field." error message...
ALTER TABLE / ALTER COLUMN QUESTION???
How do I (can I?) create a multi-value field in Access?