View Full Version : Simple Q: How many different letters?
one111
Nov 21, 2008, 02:13 PM
Assume we have these:
a,b,a,c,d,d
How many different letters are there?
Here's a simple zipped access file which includes a table of these letters, please make a simple query for that question.:o
Justwantfair
Nov 21, 2008, 02:41 PM
??
ScottGem
Nov 21, 2008, 02:57 PM
Please review the guidelines on asking for help with homework that can be found here:
Ask Me Help Desk - Announcements in Forum : Arts & Literature (https://www.askmehelpdesk.com/arts-literature/announcement-u-b-read-first-expectations-homework-help-board-b-u.html)
We won't do your work for you, but I will give you a hint:
SELECT DISTINCT
one111
Nov 24, 2008, 09:09 AM
Please review the guidelines on asking for help with homework that can be found here:
Ask Me Help Desk - Announcements in Forum : Arts & Literature (https://www.askmehelpdesk.com/arts-literature/announcement-u-b-read-first-expectations-homework-help-board-b-u.html)
We won't do your work for you, but I will give you a hint:
SELECT DISTINCT
I spent the whole day trying Distinct at SQL view and searching at access help and web... just give me the stright answer, I'm not studying DB, it's just one course for business major..
Any way accourding to some websites there is no Distinct Count in Access 2003... just give me a simple way to do it:eek:
ScottGem
Nov 24, 2008, 09:28 AM
Again, we will NOT do your work for you. I tend to doubt that you spent some much time trying to find this solution because the answer is very simple. If you want to show me what you tried and may be able to help further.
one111
Nov 25, 2008, 10:47 AM
Again, we will NOT do your work for you. I tend to doubt that you spent some much time trying to find this solution because the answer is very simple. If you want to show me what you tried and may be able to help further.
Believe me I even borrowed a book from library
SELECT Count(letters) AS CountOfletters
FROM [SELECT DISTINCT letters FROM New; ]. AS T;
It has less than 5% of the total marks... IT in Business course
ScottGem
Nov 25, 2008, 01:06 PM
You are trying to hard.
SELECT DISTINCT letters FROM New;
Then look at the count.
Justwantfair
Nov 25, 2008, 01:08 PM
I have never been so confused, I feel like I am in a foreign language thread.