我如何在2表中的mysql 1字段中创建视图。 示例
Table 1 (teacher) :
Name_field
Michael
Jodi
Rachel
Table 2 (student) :
Name_field
Perry
Viole
Hamston
我如何制作视图和结果:
Name_field
Michael
Jodi
Rachel
Perry
Viole
Hamston
答案 0 :(得分:1)
在两个表的UNION上使用CREATE VIEW。
create view someview as
select name_field from table1 union
select name_field from table2