主從表的建立,查詢代碼待增長

/*創建主從表時,應先創建從表,後創建主表。刪除時,先刪除主表,後刪除從表。向表中添加數據時,先添加從表中的數據,後添加主表中的數據。*/ create table data (     s_id int primary key identity,/*外鍵1*/          d_id int not null,     d_val int, ) create table senser (  
相關文章
相關標籤/搜索