Skip to main content
format code
Source Link
slfan
  • 9.1k
  • 115
  • 69
  • 81

If you have a large amount of data for the GROUP_CONCAT example above, you may need to change your group_concat_max_len to avoid a syntax error due to truncation. SET SESSION group_concat_max_len=4096; See

SET SESSION group_concat_max_len=4096; 

See: Trouble with GROUP_CONCAT and Longtext in MySQL

If you have a large amount of data for the GROUP_CONCAT example above, you may need to change your group_concat_max_len to avoid a syntax error due to truncation. SET SESSION group_concat_max_len=4096; See: Trouble with GROUP_CONCAT and Longtext in MySQL

If you have a large amount of data for the GROUP_CONCAT example above, you may need to change your group_concat_max_len to avoid a syntax error due to truncation.

SET SESSION group_concat_max_len=4096; 

See: Trouble with GROUP_CONCAT and Longtext in MySQL

Source Link

If you have a large amount of data for the GROUP_CONCAT example above, you may need to change your group_concat_max_len to avoid a syntax error due to truncation. SET SESSION group_concat_max_len=4096; See: Trouble with GROUP_CONCAT and Longtext in MySQL