Picking up where Descartes left, I would add some examples (simples ones, you probably know them):
Table [Acronym]
AcronymID*       Acronym
---------------       --------------
1                               acron1
2                               acron2
3                               acron3
Table [AcronymDefinitions]
AcronymDefinitionID*       AcronymID       Definition
-----------------------------       -------------------       --------------------------
1                                              1                          acron1_def1
2                                              1                          acron1_def2
3                                              1                          acron1_def3
4                                              2                           acron2_def1
5                                              2                          acron2_def2
* Those are autonumbers, so they are self-generating, you don't insert data.
[1] To get a list of all acronyms:
select Acronym
from Acronyms
order by Acronym ASC
Result List:
Acronym
---------------
acron1
acron2
acron3
[2] To get all definitions of a given acronym (in this case acronym with Acronym=2):
select Acronym, Definition
from Acronyms, AcronymDefinitions
where Acronyms.AcronymID = AcronymDefinitions.AcronymID
and Acronym = 'acron2'
order by Definition ASC
Result List:
Acronym            Definition
------------------       ---------------------
acron2                          acron2_def1
acron2                           acron2_def2
Again, this is a simple example, for anyone who needs it (I didn't test it, hope I didn't messed anything)
Edit: Ops ... posted just after you read this ModelM