Running something like select c.active from customers c doesn't actually return the active column. Running without the alias works, so we need to make sure that aliases are being properly referenced in all statement types (SELECT, WHERE, UPDATE, DELETE, JOIN)
Running something like
select c.active from customers cdoesn't actually return the active column. Running without the alias works, so we need to make sure that aliases are being properly referenced in all statement types (SELECT, WHERE, UPDATE, DELETE, JOIN)