MySql でビューを作成しました。しかし今、私の要件は、そのビューに自動インクリメントする Id 列を作成することです。
私の現在の見解は次のとおりです。
CREATE VIEW pending_assign_report_view AS
select cg.group_name,c.client_name, wt.work_type,p.Minor_worktype, ay.year,aev.emp_name,ep.Date_assigned_on
from employee_project ep,active_employee_view aev, project p, client_group cg, client c,work_type wt,assessment_year ay
where ep.task_status_id=1 and ep.username=aev.username and ep.project_id=p.project_id and p.Year_id=ay.Year_id
and p.Client_group_id=cg.client_group_id and p.Client_id=c.Client_id and p.Work_type_id=wt.Work_type_id
order by cg.group_name,c.client_name, aev.emp_name;
今、本質的に auto_increment である必要がある最初の列として Id 列が必要です。どうすればいいですか?前もって感謝します。