sqlite不支持删除列。可以这样:1. 根据Publisher表,创建一个publisher_temp表(不含字段state_province)2. 复制数据到publisher_temp中 3. 删除Publisher表 4. 把publisher_temp表改名
是不是这样啊 sqlite> create view empdept as select empid, e.name, title, d.name, location from employee e, dept d where e.deptid = d.deptid;