string query = "update usage SET Name = TRIM(Both '"' from Name) where duration >0";
when i am trying to write this query in my code....After the Both i have one '' (double quotations). system is considering
as one string
"update usage SET Name = TRIM(Both '"
and this one as second string....
' from Name) where duration >0";
I'm getting error saying ;--missing...
Please help me