Check out this query example:
(SELECT fistName, middleName, lastName
FROM a)
UNION
(SELECT fistName, NULL as middleName, lastName
FROM b)
Is that going to work properly? Table b has no middle name column at all… I figured if that doesn’t function right, I could always try this:
'' as middlename
Thanks….
Sure it will work. Also, you do not need to use
as middleName