Bootstrap

MySQL数据库如何建立视图

首先,先要建立数据库表。

建立好后,建立视图,语法如下:

create view a as select * from student;

a代表视图名,student是第一步所建立数据库表的表名。

这样视图就建立好了。

;