上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 89 下一页
摘要: mysql在执行删除更新语句时报这种错误,是因为在mysql在safe-updates模式中,如果你where后跟的条件不是主键id,那么就会出现这种错误。 解决方式有两种 1、SET SQL_SAFE_UPDATES = 0;执行该命令更改mysql数据库模式。 2、在where判断条件中跟上主键 阅读全文
posted @ 2019-04-22 14:17 BloggerSb 阅读(557) 评论(0) 推荐(0)
摘要: 选择菜单栏【调试】->【窗口】->【异常设置】 使用快捷键Ctrl + Alt + E,可以快速打开该对话框 通过取消勾选或者勾选进行设置即可。 https://blog.csdn.net/superying/article/details/5363599 阅读全文
posted @ 2019-04-18 22:41 BloggerSb 阅读(694) 评论(0) 推荐(0)
摘要: ABP的官方网站:http://www.aspnetboilerplate.com ABP在Github上的开源项目:https://github.com/aspnetboilerplate https://bitbucket.org/ https://www.codeproject.com/ ht 阅读全文
posted @ 2019-04-14 17:18 BloggerSb 阅读(240) 评论(0) 推荐(0)
摘要: E:\Program FilesApache Software Foundationapache-maven-3.5.4-binconf\settings.xmlmaven仓库中心mirrors配置多个下载中心(执行最快的镜像) alimaven central aliyun maven http://maven... 阅读全文
posted @ 2019-04-10 13:38 BloggerSb 阅读(1538) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/bk7788/p/6050184.html SQL Server索引 阅读全文
posted @ 2019-04-10 13:30 BloggerSb 阅读(5579) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/davidiao/article/details/80161939 阅读全文
posted @ 2019-04-10 13:28 BloggerSb 阅读(705) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lhj588/p/4245719.html 阅读全文
posted @ 2019-04-10 13:27 BloggerSb 阅读(403) 评论(0) 推荐(0)
摘要: #My SQL 取前多少条select * from table LIMIT 5,10; #返回第6-15行数据 select * from table LIMIT 5; #返回前5行 select * from table LIMIT 0,5; #返回前5行 阅读全文
posted @ 2019-03-29 16:37 BloggerSb 阅读(1729) 评论(0) 推荐(0)
摘要: ###My SQL Date相关函数 #获得当前日期时间 select now(); #date_format(date,format) select date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s'); #str_to_date(str, format) select str_to_date('08/09/2008', '%m/%d/... 阅读全文
posted @ 2019-03-29 16:33 BloggerSb 阅读(547) 评论(0) 推荐(0)
摘要: MySQL:众多关系型数据库中的一种 仓库 --数据库 箱子 --表 数据库: 进入mysql 命令行: mysql -uroot -p 查看所有数据库: show databases; 创建数据库: create database niu charset utf8; 删除数据库: drop database niu; 选择数据库: use databases; 查看所有表: show tabl... 阅读全文
posted @ 2019-03-29 15:43 BloggerSb 阅读(302) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 89 下一页