Idea

Cameron Pluim avatar image
2 Likes"
Cameron Pluim suggested Cameron Pluim commented

Be able to dump queries to a Table in memory

I have a situation where I query a global table to get a subset of the original values (Subset A). Then, depending on the value of the first entry on that query, I need to query Subset A in various ways creating Subset B.

In order to accomplish this currently I need to dump Subset A into a "dummy" node so the values are stored somewhere, and then I am able to query Subset A normally. It would be nice if I could do something like the following:

  1. Table myGlobalTable = reftable("GlobalTable1");
  2.  
  3. //Option 1
  4. Table SubsetA = query("SELECT * FROM $1 WHERE Column1 > 2",myGlobalTable);
  5.  
  6. //Option 2
  7. Table SubsetA = nullvar;
  8. query("SELECT * FROM $1 WHERE Column1 > 2",myGlobalTable);
  9. dumpquery(SubsetA);
  10.  
  11. Table SubsetB = nullvar
  12. if(SubsetA[1][2] <= 10) {
  13. SubsetB = query("SELECT * FROM $1 WHERE Column3 = 2", SubsetA);
  14. } else {
  15. SubsetB = query("SELECT * FROM $1 WHERE Column3 = 1", SubsetA);
  16. }

This would make it so I don't need to create a "dummy" node that I will be dumping data into, but I would be able to create and store multiple queries within the same code block.

querytables
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Comment

Matt Long avatar image
2 Likes"
Matt Long commented

In 2017 Update 1 you can use the Table.query command to do exactly this, create a table in memory.

· 7
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Your Opinion Counts

Share your great idea, or help out by voting for other people's ideas.

Related Ideas