I have to create a constant column with the alias 'Region' in each query. Also, the first query must be labeled the 'Midwest Region' and the second 'Pacific Northwest Region'. I am confused on how I am supposed to alias each one while also setting a constant? I tried inputting "as" in multiple areas but I have just been getting syntax errors. I am new to SQL.
select *
from dealerships
where state in ('IL','IN', 'WI', 'MI')
select *
from dealerships d
where state in ('WA', 'OR', 'ID')