博客首页
  • 用户名
  • 密码
  • 验证码
  • 网校首页
  • 博客首页
  • 论坛首页
fuxuemin博客
评股论今
2012年05月23日 10:40

1.<![CDATA[ your sql ]]>
2.>=(>=) >(>) <(<)  <=(<=)

日志分类:ibatis  阅读(12) | 评论(0) | 打印

2012年04月27日 14:59

维护知识点分类时添加、修改提示“数据请求有异常,加载失败”用户没有操作权限!

日志分类:工作问题  阅读(107) | 评论(0) | 打印

2012年04月19日 14:20

删除未付费学员错题记录思路。
1.导出所有已计费学员。a_pay
2.根据学员做题记录表和a_pay表查出所有未付费学员,把这些数据导入到一张临时表中no_pay.
3.select *  into no_pay_temp from (select top 1000 * from no_pay order by uid desc)
4.执行删除相关表操作。
5.delete from no_pay where uid in(select uid from no_pay_temp);
6.drop table no_pay_temp

日志分类:sql  阅读(68) | 评论(0) | 打印

2012年04月13日 08:56

window–>show view–>other–>package explorer

日志分类:开发工具  阅读(57) | 评论(0) | 打印

2012年04月13日 08:48

1.document.domain=”";2.跨域调用。var result=$.ajax({   url: “${_webSite}${_currConText}/api/message/getMessageremote.shtm”,   type: “GET”,   async:false,    contentType: “application/json; charset=UTF-8″,   dataType: “jsonp”,    jsonp:”jsonpcallback”,   data: {”mobile”:mobile,”msg”:

日志分类:js  阅读(43) | 评论(0) | 打印

2012年04月11日 11:19

从demo(id,name)表中查出11条到20条记录1.mysqlselect * from demo order by id desc limit 11,10;2.sqlserver,子查询可以用*,要有as mytableselect * from (select *,row_number()  over(order by id desc) as num) as mytablewhere num between 11 and 20;3.oracle子查询不能用*,不能有as mytable,另外as num不能用as rownum,在oracle中rownum是关键字。sel

日志分类:数据库  阅读(103) | 评论(0) | 打印

2012年03月29日 10:02

–更改一个字段
alter table QZ_PAPER add chapterID1 int null
alter table QZ_PAPER drop column chapterID1
–更改多个字段
alter table QZ_COURSE add  chapterListID1 int null,pointListID1 int null;
alter table qz_course drop column chapterListID1,pointListID1;

日志分类:sql  阅读(83) | 评论(0) | 打印

2012年02月27日 17:07

qzExam:getModelLink

日志分类:工作问题  阅读(14) | 评论(0) | 打印

2012年02月16日 16:07

选课中心能看到课而题库看不到相应的课,可以从下面两方面入手解决问题 1.课件没有做关联,或者关联了关联错了。 2.学员报的课是否建立了互斥关系。

日志分类:工作问题  阅读(48) | 评论(0) | 打印

2012年02月02日 16:08

此博文仅好友可见

日志分类:杂谈  阅读(66) | 评论(0) | 打印

array(2) { ["submit"]=> string(0) "" ["s"]=> string(0) "" } here