Make sure the number of columns and the column names of your 2 tables are the same if you want it to work. You may want to specify the column names instead of putting *, like this.
SELECT fName, mName, lName FROM tblEmployeeInfo
UNION ALL
SELECT fName, mName, lName FROM tblStudentInfo