In MS Access, my table is:Exam{id,name}, and my query is
select Exam.id as 'Exam.id',Exam.name as 'Exam.name' from Exam
Now when I execute this query this error ocured:
"Exam.id" is not a valid name. Make sure that it does not include invalid characters or punctuation and that it is not too long.
I want to use the full table + column as the alias, Exam.name as 'Exam.name', but I don't know how i can get Access to accept it.
Thanks for your attention.