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
Backspace not working
Fixing - Cannot perform an aggregate function on an expression containing an aggregate
Windows form dialog box Refresh parent
Modify a PARAM tag value within C#
msaccess 2003 table update required
Installing Windows XP on a laptop with Vista
xp professional service pack 3
Format a portion of text box in bold
SQL datetime issue: The following 2 sections of code produce different results.
Access multi-column combobox selection