Sometimes when I used qa_db_query_sub() function to create a sql query, I like to use columns as parameters
$sql = "select # from ^users";
qa_db_query_sub( $sql, 'id' );
The problem here is Q2A adds ' character to parameters and make
"select 'id' from db_users"
That is wrong. I don't want those characters. How could I get rid of them?