1

如果我在 SQL Server 数据库中的 B 列之前创建 A 列,出于任何原因是否重要?在这两者之间没有假定其他行动。

4

1 回答 1

0

看到这个:

您的表结构:

create table test (id int, name varchar(100));

您的客户表:

create table test (name varchar(100), id int);

如果您使用:

insert into test values (10, 'Roger')

不指定表格中字段的顺序会导致您的客户转换错误。

于 2012-08-21T18:19:54.163 回答