SQL-like query language for csv

Environment Variable

Set Environment Variable

SET @%env_var_name TO value;
SET @%env_var_name = value;
value
string or identifier

A set environment variable statement is used to set the value to the environment variable.

Unset Environment Variable

UNSET @%env_var_name;

A unset environment variable statement is remove the environment variable.