AQL Syntax: Insert multiple records

I am trying to find the proper syntax for inserting multiple records via aql. I have found this to be helpful: AQL | Aerospike Documentation but I am having trouble finding the proper syntax for inserting multiple rows. Here is what I have tried:

INSERT INTO test.myset (PK, name1, name2) VALUES (1, 'test1', 'test2'), (2, 'test3', 'test4');

Is it possible to insert multiple rows with one aql statement?

By rows you mean records? No

This topic was automatically closed 6 days after the last reply. New replies are no longer allowed.