I select something from a column named "9 stars" (without the "").
SELECT `9 stars` FROM `table` WHERE ...
works fine, but I have to find a solution to do the job combining a variable (i = 9)
with the "stars"
, something like:
i = 9;
SELECT `i stars` FROM `table` WHERE ... (which does not work like this, of course).