mysql, .
10 . mysql- :
SELECT * FROM forms GROUP BY 'ID'; // returns only one row
:
SELECT ID FROM forms GROUP BY 'ID'; // returns only one row
:
SELECT ID FROM forms GROUP BY ID; // returns more than one row (with one column of field "ID") grouped by ID
SELECT * FROM forms GROUP BY ID; // returns more than one row (with columns of all fields) grouped by ID
SELECT * FROM forms GROUP BY `ID`; // returns more than one row (with columns of all fields) grouped by ID
: Donot , , stringty . , . escape-, . ID