testM0.sql
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:0k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. create table tbl1 
  2. (
  3. k1 int not null primary key,
  4. t1 char(40) not null unique
  5. )
  6. create table tbl2 
  7. (
  8. k2 smallint not null primary key,
  9. t2 int 
  10. )
  11. create table tbl0 
  12. (
  13. k1 int       default 0 not null  --references tbl1(k1)
  14. ,k2 SMALLINT  not null  --references tbl2(k2)  
  15. ,taila float NOT NULL,
  16. tailb char(20) default USER,
  17. PRIMARY KEY (k1,k2)
  18. )