MySQL关于 lower_case_table_names 的文档 https://dev.mysql.com/doc/refman/5.7/en/identifier-case-sensitivity.html In MySQL, databases correspond to directories within the data directory. Each table within a database corresponds to at least one file within
linux平台,使用rand.Seed() //rand_linux.go package main import ( "math/rand" "time" ) //get the random number in [min, max] func RandInt64(min, max int64) int64 { if min >= max || max == 0 { return max } rand.Seed(time.Now().UnixNano())