linux 里用sqlites创建视图
在sqlite3里见了一个数据库,数据库里有两个表格,我想要通过取两个表里的字段创建视图,命令是什么??? SQLite3 数据库
[解决办法]
create view x as select * from ta,tb where ta.id=tb.id