fieldtype - Why doesn't all characters fit into new TEXT field in new table in MySQL? -


i aggregate several texts varchar(140) group_concat fields in mysql new table. automatically new field becomes of field type text according documentation should hold 65535 characters. still it's of texts characters shows in new table (column "full_text" below). i've checked , there more texts, , characters, should in new tables column. haven't changed in mysql server such max_package_size, it's default.

here mysql query:

drop table if exists tempsumdate; create table tempsumdate engine=myisam character set utf8 collate utf8_swedish_ci select tw.from_user, month(tw.created_at) month, group_concat(tw.text) full_text   tweets tw group tw.from_user, month;´ 

what missing here?

rtlm: http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat

by default group_concat() has length limit of 1024 chars.


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -