摘要:
下面是些DM7&DM8中,比较常用的DDL语句示例,如下: --1.table create table test (c1 int primary key, c2 varchar(20));insert into test values(1, 'aaa');commit; --2.index cre 阅读全文
摘要:
1.创建 CREATE TABLE test_id(c1CHAR(10),c2 INT IDENTITY(1,1)); 或者 ALTER TABLE dbo.test_id ADD c2 INT IDENTITY(1,2); 2.同步时该参数的限制。 set IDENTITY_INSERT test 阅读全文