主从表的建立,查询代码待增长

/*创建主从表时,应先创建从表,后创建主表。删除时,先删除主表,后删除从表。向表中添加数据时,先添加从表中的数据,后添加主表中的数据。*/ create table data (     s_id int primary key identity,/*外键1*/          d_id int not null,     d_val int, ) create table senser (  
相关文章
相关标签/搜索