摘要:
function getRootPath() { //http://10.10.20.159:90/pingtai/ var strFullPath = window.document.location.href; var strPath = window.document.location.pat 阅读全文
摘要:
sql查询数据库表中重复数值 -- 查询表中id重复的值select id from 表名 group by id having count(*) > 1 --查询表中的重复记录,重复记录是根据id重复做判定select * from 表名 where id in(select id from 表名 阅读全文
摘要:
在新项目中使用 使用 go mod 并不要求你的项目源码放到 $GOPATH 下,所以你的新项目可以放到任意你喜欢的路径。在项目根目录下执行go mod init,会生成一个 go.mod 文件。然后你可以在其中增加你的依赖,如下: module github.com/gaoyoubo/xxx go 阅读全文
摘要:
分别修改数据库,表,字段编码:ALTER DATABASE db_name DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ALTER TABLE tbl_name DEFAULT CHARACTER SET utf8 COLLATE utf8_ 阅读全文