| 123456789101112131415161718192021222324252627282930313233343536 |
- select * into /tmp/table from /system/field limit 1
- /**
- output()
- **/
- ;
- select * from /tmp/table
- /**
- output()
- **/
- ;
- select namespace,name,ftype,fparam,mtime into /tmp/table from /system/field limit 2
- /**
- output()
- **/
- ;
- select * from /tmp/table
- /**
- output()
- **/
- ;
- select * into temptable from /matrix/ldap limit 2
- /**
- output()
- **/
- ;
- select * from temptable
- /**
- output()
- **/
- ;
|