Mysql – Can I use table name and alias name both interchangeably in sql joins
If I have query SELECT FNAME, CNAME FROM FACULTY F, COURSES C WHERE F.FID=C.FID AND COURSES.FID='F04'; so can i use COURSES.FID or once alias is there I should use only that. though I am getting error if I am using…