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.
誰かが次の行で私を助けてくれませんか。レコードが挿入されると自動的に増加する Id を持つ列を持つテーブルを作成しようとしています。これはマイクロソフト アクセス用です。
"CREATE TABLE " & tblName & " ([P_Id] integer not null AUTOINCREMENT(100, 5))"
自動番号フィールドを使用してMSAccessテーブルを作成するには、次のことを試してください。
"CREATE TABLE [" & tblName & "] ([P_Id] integer not null IDENTITY)"
開始値と増分を指定できるかどうかはわかりませんが、試すことはできます。