Insert statement syntax

PHOTO EMBED

Thu Feb 17 2022 08:38:01 GMT+0000 (Coordinated Universal Time)

Saved by @mirelspr #sql

INSERT INTO TableName (
  Field1,
  Field2,
  Field3
) VALUES (
  'Value1',
  22,
  GETDATE()
)
content_copyCOPY