求一简单 SQLite 视图创建语句解决思路
求一简单 SQLite 视图创建语句
很简单,从A、B、C三个表中分别取出t1,t2,t3这个字段!但是对这方面语法不熟,请熟悉的写一个!
------解决方案--------------------
create view xxxx as
select t1,t2,t3 from a,b,c where a.id=b.id and b.id=c.id
------解决方案--------------------
很简单,从A、B、C三个表中分别取出t1,t2,t3这个字段!但是对这方面语法不熟,请熟悉的写一个!
------解决方案--------------------
create view xxxx as
select t1,t2,t3 from a,b,c where a.id=b.id and b.id=c.id
------解决方案--------------------