You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`entity` is the entity for which new objects will be created.
203
+
204
+
*`attribute` is an attribute of the entity that will be inserted.
205
+
206
+
{{% alert color="info" %}}You cannot insert associations when inserting with values.{{% /alert %}}
207
+
208
+
*`expression x` is any valid expression consisting solely of literals or OQL expressions. Every row must contain the same number of values of compatible types as the list of attributes you are inserting for each entity object.
209
+
210
+
{{% alert color="info" %}}This expression cannot use OQL clauses to select data from any entities.{{% /alert %}}
211
+
212
+
Example:
213
+
214
+
```sql
215
+
INSERT INTOModule.Person ( Name, BirthDate )
216
+
VALUES
217
+
( 'Person A', DATEPARSE('01 Jan 1970', 'dd MMM yyyy') ),
218
+
( 'Person B', DATEPARSE('20 Mar 1990', 'dd MMM yyyy') ),
0 commit comments