凌动小生的Blog

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年4月23日

摘要: itemTpl : new Ext.XTemplate( '<tpl for=".">', '<table style="width:100%"><tr>', '<td class="reportname" title="reportname">{ReportName}</td>', '<td class="categoryname" title="category 阅读全文
posted @ 2013-04-23 15:48 凌动小生 阅读(375) 评论(0) 推荐(0) 编辑

摘要: 选课存储过程业务逻辑course 表和student 表,student_course表student不能重复选课student选课时间(timeRange字段)不能有冲突上代码:View Code 1 CREATE PROCEDURE [dbo].[selectCourse]( 2 @course_id int , 3 @student_id int , 4 @result int output 5 ) 6 AS 7 BEGIN 8 SET NOCOUNT ON; 9 IF(EXISTS(SELECT * FROM [student_course] WHERE [course_id... 阅读全文
posted @ 2013-04-23 09:14 凌动小生 阅读(290) 评论(0) 推荐(0) 编辑