@vof() Function

Top  Previous  Next

@vof() returns evaluates the given expression and returns the result.

Syntax:

@vof(expression)
 

See MScript Symbols, MScript Symbols, Remover Commands
 

Examples:

SELECT * FROM products WHERE ID = @vof(ID;-1)

 

UPDATE customers SET

  NAME = '@vof(NAME)',

  EMAIL = '@vof(EMAIL)',

WHERE ID = @vof(ID)

 

 

Accout Information:

  Account No : @vof(ID)

  E-Mail     : @vof(EMAIL) 

  Department : @vof(DEPT;\rl)

 

<root>

  <product-name>@vof(NAME)</product-name>

  <unit-price>@vof(PRICE * DISCOUNT)</unit-price>

</root>