摘要:
declare @a decimal(18,7) --经度 declare @b decimal(18,7) --维度 set @a=120.076 set @b=30.3273 declare @c decimal(18,7) set @c=6378137 --地球半径 select id,name,address,registaddress,longitude,latitu... 阅读全文
摘要:
表A与表B是一结多的关系,取表B中最近的一条记录 分组统计,取排名为1的数据 阅读全文
摘要:
头部导航固定时,使用position: fixed; 会导致导航的宽度大于容器的宽度,引起位置的偏移 阅读全文
摘要:
.same{ padding: 0;text-align:center; margin: 0 auto; border: 1px solid ... 阅读全文
摘要:
转自 https://segmentfault.com/q/1010000007144114/a-1020000007144741 取键 取值 阅读全文
摘要:
腾讯企业邮箱使用SSL时,原来的邮件发送程序一直提示参数错误 端口与使用SSL都是配制正确的,但是一直发送不出去 找到以下资料 地址:http://www.ie81.com/Technology/225.html 这样还是不行,报操作已超时错误 在国外的技术网站上看到一句话System.Net.Ma 阅读全文
摘要:
asp.net web.config add node 阅读全文
摘要:
set @strsql = concat( 'select sql_calc_found_rows * from receivedata ' ,' where 1=1 ' ); set @strsql=concat(@strsql,CASE IFNULL(@openid, '') ... 阅读全文
摘要:
转自 http://www.cnblogs.com/yuejin/archive/2013/11/12/3419467.html 1、打开mysql.exe(MySQL Command Line Client),输入密码 2、输入:use mysql; 3、查询host输入: select user 阅读全文
摘要:
/* public static string HelloWorld() { return "Hello World!"; } static void Main(string[] args) { var task = BeginTask(HelloWorld); // non-blocking call ... 阅读全文