0
私はContiki-OSを勉強し始めました。 そして私はContiki - Antelopeに興味があります。 AQL(Antelope Query Language)を使用して、リレーション、属性を作成し、シリアルCoojaシミュレーションでタプルを挿入しようとします。このように:アンテロープcontiki-OS
create relation simple;
create attribute id domain int in sample;
create attribute temp domain int in sample;
insert (1,1) into sample;
insert (2.2) into sample;
....
しかし、約1000個のタプルを挿入する方法はわかりません。
自動的に1000個のタプルを追加する方法insert (1,1) into sample;
insert (2.2) into sample;
.....
inser (1000,1000) into sample;
: は、私は次のように、このマニュアルを行うことはできませんか?