In the SQL Queries section of the user manual it mentions you can use a global list in a from statement. Can someone give me the correct syntax to do this?
Currently I have the following instead of the table query because I could not get the syntax quite right:
string vsCell = "MED"; string vsQuery = "WHERE lsCellName = \"" + vsCell + "\""; Array pullResult = List("glQbeforePress_MED").pull(vsQuery,0,0);
The goal of this was to find out how many of the tokens on the list with the label lsCellName = "MED".
Can anyone tell me what the equivalent to this would be with Table.query() ?