このエラー メッセージに関する他のさまざまな投稿を見て、解決策を試しました。私の問題を解決するものは何もないようです。私の投稿は、私がやろうとしていることをほとんど説明しています。データベースに、既存のショップと同じフィールドを持つ新しいショップを作成したいと考えています。
これは私のコードです。
INSERT INTO [dbo].[ElementDescriptions] (
[FieldName]
, [DisplayName]
, [Required]
, [DataType]
, [SortOrder]
, [ElementID]
, [Description]
, [Lookup]
, [UIType]
, [RequiredForNew]
, [RequiredForReconditioned]
, [RequredForSecondhand]
, [ShopCode])
SELECT ([FieldName]
, [DisplayName]
, [Required]
, [DataType]
, [SortOrder]
, [ElementID]
, [Description]
, [Lookup]
, [UIType]
, [RequiredForNew]
, [RequiredForReconditioned]
, [RequredForSecondhand]
, 'NEWSHOP')
FROM [dbo].[ElementDescriptions]
WHERE [AARShopCode] = 'OLDSHOP'
私のエラーは、「、」に近いと言っています。