I am a beginner in django , How to write a raw query in django which is similar to
"select * from table where column1 like '%a%'"
I am getting an error
"not enough arguments for format string"
when i just use "select * from table where column1 like 'a' " . it is working .
%a%supposed to be?