111system.mql 380 B

123456789101112131415161718192021222324252627282930313233343536
  1. select * into /tmp/table from /system/field limit 1
  2. /**
  3. output()
  4. **/
  5. ;
  6. select * from /tmp/table
  7. /**
  8. output()
  9. **/
  10. ;
  11. select namespace,name,ftype,fparam,mtime into /tmp/table from /system/field limit 2
  12. /**
  13. output()
  14. **/
  15. ;
  16. select * from /tmp/table
  17. /**
  18. output()
  19. **/
  20. ;
  21. select * into temptable from /matrix/ldap limit 2
  22. /**
  23. output()
  24. **/
  25. ;
  26. select * from temptable
  27. /**
  28. output()
  29. **/
  30. ;