Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 SQL Server 数据库中的 B 列之前创建 A 列,出于任何原因是否重要?在这两者之间没有假定其他行动。
看到这个:
您的表结构:
create table test (id int, name varchar(100));
您的客户表:
create table test (name varchar(100), id int);
如果您使用:
insert into test values (10, 'Roger')
不指定表格中字段的顺序会导致您的客户转换错误。