Alternative to inserting a quote
I am used to append code using '''' for a ' in building sql statement
l_sql := 'where col1 ' || '''' || l_CHAR_VAR || '''';
I know that new versions have better way of writing this statement. Can someone please post a better way to write this. Thanks.