I wonder how I can select custom values in SQL. I understand this is easy with MS SQL, but is it doable with PHPMyAdmin?
SELECT field1, 0 as answers FROM table
// "answers" should contain 0
The problem is that 0 is interpreted as a field, which it isn´t; it´s just a value I want to store in “answers”.
Thanks for your help!
If you want a constant, this should work: