标签: xcode sqlite firefox-addon foreign-keys
我想在sqlite数据库中使用外键概念。 如何才能在Firefox SQLite Manager中实现? 请给我回复我的邮件ID: anand.handsinfotech@gmail.com
答案 0 :(得分:1)
您可以read here如何在SQLite管理器中使用外键。 在创建表格时,请在下面的简短使用行中。
FOREIGN KEY(foreign_key_field) REFERENCES parent_table_name (parent_key_field)