diff --git a/node.js/cds-ql.md b/node.js/cds-ql.md index 6ab9b9dc4..431724846 100644 --- a/node.js/cds-ql.md +++ b/node.js/cds-ql.md @@ -698,15 +698,16 @@ INSERT.into (Books) .columns ( [ 252, 'Eleonora', 150, 234 ] ) ``` -### as() {.method} +### from() {.method #from} Constructs a _INSERT into SELECT_ statement. ```js -INSERT.into('Bar') .as (SELECT.from('Foo')) +INSERT.into('Bar') .from (SELECT.from('Foo')) ``` +### as() {.method} - +The use of _.as()_ method is deprecated. Please use [_.from()_](#from) method instead. ## UPSERT {.class}