摘要:
itemTpl : new Ext.XTemplate( '<tpl for=".">', '<table style="width:100%"><tr>', '<td class="reportname" title="reportname">{ReportName}</td>', '<td class="categoryname" title="category 阅读全文
摘要:
选课存储过程业务逻辑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... 阅读全文