sql
eddie
这个作者很懒,什么都没留下…
展开
-
sqlserver保留两位小数
sql server中除法,会遇到除数为0的情况,且保留两位小数,写法如下: select case when num=0 then 0 else convert(decimal(18,2),210.343/num) end as 结果 from tabNumber select [Carrier] as '承运人分组',count(*) as '张数','0' as转载 2013-05-09 10:13:30 · 5026 阅读 · 0 评论 -
1130-host ... is not allowed to connect to this MySql server
报错:1130-host ... is not allowed to connect to this MySql server解决方法:1。 改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"转载 2013-07-31 15:19:49 · 693 阅读 · 0 评论 -
Mybatis 自动生成代码工具
MyBatis中,可以使用Generator自动生成代码,包括DAO层、 MODEL层 、MAPPING SQL映射文件。 第一步:下载MyBatis的Generator工具 下载地址:http://code.google.com/p/mybatis/downloads/detail?name=mybatis-generator-core-1.3.1-bundle.zip&can=转载 2014-04-30 08:49:19 · 1010 阅读 · 0 评论