• 2022-06-01
    以下是修改视图的语句是
    A: create or replace view st1 as select* from student;
    B: alter view st1 as select name from student join class on student.cid=class.id;
    C: alter table st1 modify class int(3);
    D: create or replace table st1 as select* from student;