问题:C#中用mysql 的concat函数连接ID 与Name两列 但是出来的数据缺失systime.byte[] 。
key:concat会把int类型转换成二进制的 所以出来的结果就是二进制数组 ,解决方法很简单 concat(cast(id as char),name) 即可。