I retrieve date from the table: my_date:select max date from table
now I want to use my_date this way: select from some_other_table where date within(my_date;now) but my_date has type table - how I may extract date as a value to use in the last query?
You should use 'exec'. 'exec' returns data in various forms like single value,list,dictionary etc., depending upon how it is being used.
This will return max date as a value.
But below call:
This will reurn a list which will have all date values from table.