Is there a option where I can question if a certian variabel is available or not.
For example
SET variable_test = 'something';
IF (variable_test NOT EXIST) (
// Do nothing
)
// When variable_test exist then do this
ELSE (
// to something
// script should be here
)
ENDIF
//SET variable_test = 'something';
IF (variable_test NOT EXIST) (
// Do nothing
// script should be here
)
// When variable_test exist then do this
ELSE (
// to something
)
ENDIF