摘要:
go基础 数组 //数组定义 var a [3] bool //初始化 var b [3] int = [3]{1,2,3} // 数组的遍历 // 1.索引遍历 city := [...]string{"背景", "团啊", "你好"} for i := 0; i < len(city); i++ 阅读全文
摘要:
set sql_mode=''; set global sql_mode="ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"; 阅读全文