MysqL中,在两个或者以上的基本表上创建视图
在student表和stu_info表上,创建stu_class视图,查询出s_id号、姓名和班级 首先,创建stu_info表,并向表中插入数据
图片描述" title="">
查看表中的数据
图片描述" title="">
创建stu_class视图
图片描述" title="">
查看视图
图片描述" title="">
可以看出,创建的视图包含id、name和class字段 其中,id字段对应student表中的s_id字段,name字段对应student表中的name字段,class字段对应stu_info表中的class字段
原文链接:https://www.f2er.com/mysql/62432.html