I have a child table - that I want to pull all of the distinct MasterKey field data, but the PrintableDescription field is not unique - is there a way to do this? I am new to the append query.
INSERT INTO [Master Key] ( MasterKey, PrintableDescription )
SELECT [Master Children].MasterKey, [Master Children].PrintableDescription
FROM [Master Children];