mysql> show create view v_shop;16. index必须拥有index权限,才能执行[create |drop] indexmysql> grant index on pyt.* to p1@localhost;mysql> create index ix_shop on shop(article);mysql> drop index ix_shop on shop;17. excute执行存在的Functions,Proceduresmysql> call pro_shop1(0001,@a);+—...