摘要:
The literal syntax is similar for arrays, slices, maps, and structs (数组、slice、map和结构体字面值的写法都很相似). The common form of arrays is a list of values in ord 阅读全文
摘要:
全文索引的格式: MATCH (columnName) AGAINST ('string') 例如: SELECT * FROM `student` WHERE MATCH(`name`) AGAINST('聪') -- 当查询多列数据时: -- 建议在此多列数据上创建一个联合的全文索引,否则使用不 阅读全文
摘要:
在学习golang基础的时候,发现有个叫rune的的数据类型,当时不理解这个类型的意义。 查询,官方的解释如下: // rune is an alias for int32 and is equivalent to int32 in all ways. It is // used, by conve 阅读全文