- 论坛徽章:
- 0
|
应用需要对表建立一个视图,视图中的一个字段由原表中的字段经函数变化后得出。
在读出时,视图会相应的将原表中的字段变化后显示给用户
问题1:用户是否可以对这个视图进行写操作呢?
问题2:如果可以写,那么插入的结果是什么呢?
问题3:可否定义视图中变化函数的逆函数呢?
例:
create table testtable (name varchar,id int);
create view testview as select name,convert(id) from testtable; // 其中convert()预定义为:convert(x)=x-1
用户执行:select * from testtable;得到:
haha | 26
hehe | 50
那么,用户执行:select * from testview;会得到:
haha | 25
hehe | 49
问题1:是否支持视图插入:insert into testview values ('xixi',80); ?
问题2:插入后,查原表的结果是什么?执行select * from testtable;得到:
haha | 26 haha | 26
hehe | 50 还是: hehe | 50
xixi | 80 xixi | 81
问题3:是否可以定义一个逆函数,是insert into testview values ('xixi',80)之后,select * from testtable得到:
haha | 26
hehe | 50
xixi | 81 |
|