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
Access Query Too Complex Error with Union Query
Windows XP - Strange Connection Issues (ping but can't browse)
Help with Hyper-V Planning for Intel Modular Server
URGENT - 2003 Server - this system does not permit you to logon interactivally
Windows Scripting: FileSystemObject properties inconsistent with Windows Explorer values
aspx/c# looping through data from within body
Problems when running VB.NET app as a scheduled task
Receiving error code 0x800702e4 when trying to download with InDownloadMngr while in IE 8 with Win7 runing (64 bit) what do I do?
update query in access 2003 possible
Convert UCHAR[] to System::string