Trying to answer this issue (such as AP I tried to use group_concat
it returns me the object of type BLOB
.
Table:
CREATE TABLE 'teste' (
'id' int(11) NOT NULL AUTO_INCREMENT,
'nome' varchar(45) DEFAULT NULL,
PRIMARY KEY ('id')
);
Data in the Table:
Inquiry:
SELECTgroup_concat(t.id)FROMtestet;
Result:
Is there a problem in the MySQL Query Browser? In the query?
Note:
In the question at hand, I've seen examples that worked right here plus nothing.
No Workbench
worked fine, same query.