Sorry for the confusion on my question.
im about to ask is the difference of this two(2).
EXAMPLE 1:
query_sql "select `field` from `table` where `field` = " + .@id, holder;
Question on EXAMPLE 1, do i need to put escape_sql() on the .@id even its outside of double qoute (")
CORRECT USAGE:
EXAMPLE 2:
query_sql "select `field` from `table` where `field` = '" + escape_sql(.@id) + "'";
This EXAMPLE 2 is commonly use each one of us..