入场考试

This commit is contained in:
2023-11-20 20:24:38 +08:00
parent 48dd589a7f
commit a198d4c9ec
@@ -213,7 +213,7 @@ namespace FineUIPro.Web.HSSE.SitePerson
string strSql = @"select max(TestScores) from dbo.Training_TestRecord AS TestRecord
LEFT JOIN dbo.Training_TestPlan AS TestPlan ON TestPlan.TestPlanId=TestRecord.TestPlanId
LEFT JOIN dbo.Training_TestTraining AS Training ON Training.TrainingId = TestRecord.TestType
where (TestPlan.PlanName LIKE '%入场培训试题%' OR Training.TrainingName LIKE '%入场培训试题%' ) and TestRecord.ProjectId='" + CurrUser.LoginProjectId + "' and TestManId = '" + TestManId + "' ";
where (TestPlan.PlanName LIKE '%入场%' OR Training.TrainingName LIKE '%入场%' ) and TestRecord.ProjectId='" + CurrUser.LoginProjectId + "' and TestManId = '" + TestManId + "' ";
System.Data.DataTable tb = SQLHelper.GetDataTableRunText(strSql, null);