diff --git a/app/db_cross_delay.py b/app/db_cross_delay.py index e3cac3b..f4bbc90 100644 --- a/app/db_cross_delay.py +++ b/app/db_cross_delay.py @@ -39,7 +39,7 @@ class CrossDbHelper(TableDbHelperBase): def query_cross_examine_record_detail(self, start_hm, first_date, crossid): sql = """ - select * from cross_doctor_matedata.cross_phase_problems_record_detail where crossid = '%s' and start_hm = '%s' and first_date = %s + select * from cross_doctor_matedata.cross_phase_problems_record where crossid = '%s' and start_hm = '%s' and first_date = %s """ % (crossid, start_hm, first_date) return self.do_select(sql)