使用虚拟表的机制允许应用程序发布来自SQL 语句可访问接口, 就像它们是表SQL语句可以在概念集群队列虚拟表它们都可以执行一个真实表, 但下列情况除外:
无法上创建触发器虚拟表中
不能在虚拟创建额外的索引的表(虚拟表可以有索引, 但必须构建到虚拟表的实现不能添加带索引的单独使用CREATE INDEX 语句)
一个无法运行ALTER TABLE ...ADD COLUMN 针对虚拟表格命令.
type_id integer references food_types(id)create table Info_table
(info_ID int primary key,
LinkMan_ID integer REFERENCES LinkMan_table(LinkMan_ID)
)
这样就行了,SQLite的sql语法稍有不同,你试试看
这是sqlite的create table的语法,从语法看没有FOREIGN KEY(LinkMan_ID) 这样的文字。
create table table_name
( column_definition references foreign_table (column_name)
on {delete|update} integrity_action
[not] deferrable [initially {deferred|immediate}, ]
… )
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)