数据库中 将一张纵表转换为一张横表
数据库纵表数据
sql语句如下select cardid,
max(case t.projectcode when 'IA-002' then t.result end) as ht,
max(case t.projectcode when 'IA-003' then t.result end) as wt,
max(case t.projec...
分类:
数据库 时间:
2014-12-22 11:11:09
阅读次数:
156
本文由 书画小说软件 整理发布 内容与本软件无关
更惬意的读、更舒心的写、更轻松的发布
--判断是否存在
if exists(select 1 from master..sysdatabases where name='TestDB')
print 'TestDB存在'
else
print 'TestDB不存在'
--判断表是否存在
if e...
分类:
数据库 时间:
2014-12-22 11:10:05
阅读次数:
128
上一篇博客总结了视频的前七个单元的内容,这一篇博客,总结继续。
【第八单元】介面——类别设计
这里所说的介面,也就是我们说的接口,刚开始乍眼一看还觉得要不就是他的字写错了,要不就是和我们说的那个“界面”一样。 【第九单元】继承——类别的设计
对于继承,前面的学习一遍遍接触过,所以这部分的学习还是比较轻松的。
【第十单元】资料库资料与商业层设计
【第十一单元】以元件...
分类:
Web程序 时间:
2014-12-22 11:12:23
阅读次数:
167
1、lua虚拟机和C++相互调用、lua设计基础的相关博客,供以后复习:
http://cn.cocos2d-x.org/tutorial/show?id=1474
http://blog.csdn.net/ym012/article/details/7209637
http://www.cnblogs.com/sifenkesi/p/3876745.html
http://my.osch...
分类:
编程语言 时间:
2014-12-22 11:11:23
阅读次数:
154
感觉Leetcode出书了以后judge速度快了不少,但是新出的题目质量不大好
Given an array of size n, find the majority element. The majority element is the element that appears more than ?
n/2 ? times.
You may assume that the...
分类:
其他好文 时间:
2014-12-22 11:09:40
阅读次数:
121
使用$watch监控数据模型的变化
在scope 内置的所有函数中,用得最多的可能就是$watch 函数了,当你的数据模型中某一部分发生变化时,$watch 函数可以向你发出通知。你可以监控单个对象的属性,也可以监控需要经过计算的结果(函数),实际上只要能够被当作属性访问到,或者可以当作一个JavaScript 函数被计算出来,就可以被$watch 函数监控。它的函数签名为
$wa...
分类:
Web程序 时间:
2014-12-22 11:11:51
阅读次数:
193
highcharts 图形报表工具 最近公司开发需要用到报表 在网上查询了api 研究研究 更多请看:http://www.hcharts.cn/api/index.php#yAxis.title.text
无标题文档
<!--
...
分类:
其他好文 时间:
2014-12-22 11:11:51
阅读次数:
177
课程讲师:老牛课程分类:Java框架适合人群:初级课时数量:85课时更新程度:完成用到技术:Springmvc+Spring+Mybatis+Bootstrap+jQueryMobile涉及项目:PC端和手机端教务管理系统
需要更多相关资料可以联系 Q2748165793
课程大纲
技能储备
第1课springMVC概述和基础配置
第2课springMVC注解和参数传递
第3课sp...
分类:
数据库 时间:
2014-12-22 11:12:08
阅读次数:
594
这篇是讲 workthread 模拟向网络访问数据,获得数据后,返回 message 发送给 mainthread ,并修改 textview 的 text。
1、layout:
<TextView
android:id="@+id/textViewId"
android:layout_width="match_parent"
android:...
分类:
移动开发 时间:
2014-12-22 11:09:28
阅读次数:
170
Linux问题集
1 linux环境变量设置及保存地点
1. 显示环境变量HOME
$ echo $HOME
/home/terry
2. 设置一个新的环境变量WELCOME
$ exportWELCOME="Hello!"
$ echo$WELCOME
Hello!
3. 使用env命令显示所有的环境变量
$ env
HOSTNAME=terry.mykm...
分类:
系统相关 时间:
2014-12-22 11:10:51
阅读次数:
327
jQuery 中几种Ajax的应用
//jquery中的几种ajax请求
function ajaxRequest(){
/*
$.ajax();最底层的方法
load()、$.post()、$.ajax();第二层
$.getJSON(); $.getScript();//第三层
...
分类:
Web程序 时间:
2014-12-22 11:10:30
阅读次数:
167
php的学习大概可以分为三个阶段:
阶段一:基础知识,页面布局。
学习内容:html、div+css、js。学习目标:div+css布局。
阶段二:php核心知识和数据库交互。
学习内容:php核心知识、mysql数据库操作、js加强。学习目标:php+web+mvc开发中型项目。
阶段三:框架的运用。
学习内容:zf/thinkphp、smarty模板引擎(大型网站核...
分类:
Web程序 时间:
2014-12-22 11:11:09
阅读次数:
166
使用jquery实现自定义动画方法
使用animate 实现动画
css样式
//定义图片属性
img{position:relative;}//定位
$(function () {
// $("img").hover(function () {
//
// $(this).anima...
分类:
Web程序 时间:
2014-12-22 11:10:09
阅读次数:
192
You are using Oracle Database 10g. The log LOG_ARCHIVE_FORMAT pa
rameter is set to 'LOG%t_%_s_%r.dbf'.
Why is %r used in the file name format?
A. To uniquely identify the archived log files wit...
分类:
数据库 时间:
2014-12-22 11:09:26
阅读次数:
161
利用fgets()函数来判断一个文件有多少行。...
分类:
其他好文 时间:
2014-12-22 11:08:26
阅读次数:
164
Because of hardware failure, you decided to drop a redo log memb
er from the database.
Which condition should be met to drop a redo log file?
A. The redo log file should belong to an active gro...
分类:
数据库 时间:
2014-12-22 11:09:05
阅读次数:
158
Little Zu Chongzhi's Triangles
Problem Description
Zu Chongzhi (429–500) was a prominent Chinese mathematician and astronomer during the Liu Song and Southern Qi Dynasties. Zu calculated the...
分类:
其他好文 时间:
2014-12-22 11:08:43
阅读次数:
233