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
Unable to see embedded file in Word document
How to Call MDI Child Events from MDI Parent...not all MDI Children are the same form
hide FormView "delete" and "edit" button links programmatically
system interrupt controller missing driver
changing formview background color
How to identify at runtime if the sw is in debug or release mode (VB.NET)
Creating a directory path string based on choices in a form
Updating things based on info in a given record
Server 2003 Terminal Services and cable vs. T-1 internet service
Get machine name using UserID