alter table actor add unique uniq_idx_firstname (first_name);
alter table actor add index idx_lastname (last_name)

记住在sql里面的表名 索引名 列名都不用加‘’