cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
waraulston
Level II

How do I remove the "SQL" variable from the script section of my table?

This table is created automatically by concatenating many subsets together. Each time I concatenate, an "SQL" variable shows up. I am able to delete the other scripts that come up, but I have not been able to delete this one so far. Any help is much appreciated.Example for Forum.png

1 REPLY 1
jthi
Super User

Re: How do I remove the "SQL" variable from the script section of my table?

SQL is table variable not table script, so it needs different message (<< Delete Table Variable("name of variable"))

jthi_0-1690310869584.png

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Table Variable("Days", 42);
Wait(2);
dt << Delete Table Variable("Days");
-Jarmo