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')
テーブル内のフィールドの順序を指定しないと、顧客変換エラーが発生します。