szymon_dybczak
Esteemed Contributor III

Hi @nkrom456 ,

Try something like this. If you are using backticks it treats a column name exactly as you type (in this case it treats double quotes as a part of a colum name)

create view vw_emp with schema binding as select `employeeid` from employee 

OR

create view vw_emp with schema binding as select employeeid from employee