which one is good:
string sQuery = \"SELECT * FROM table\";
or
const string sQuery = \"SELECT * FROM table\";
ReSharper only suggests this if the particular string reference never changes. In that case you express your intend by using const string instead of just string.
const string
string