scan_central_db.sql 99 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159
  1. CREATE TABLE IF NOT EXISTS `sc_student`
  2. (
  3. `id` bigint NOT NULL AUTO_INCREMENT,
  4. `exam_id` bigint NOT NULL,
  5. `exam_number` varchar(64) NOT NULL,
  6. `name` varchar(64) NOT NULL,
  7. `subject_code` varchar(64) NOT NULL,
  8. `package_code` varchar(64) DEFAULT NULL,
  9. `exam_site` varchar(64) DEFAULT NULL,
  10. `exam_site_name` varchar(64) DEFAULT NULL,
  11. `exam_room` varchar(64) DEFAULT NULL,
  12. `seat_number` varchar(16) DEFAULT NULL,
  13. `campus_name` varchar(64) DEFAULT NULL,
  14. `campus_code` varchar(64) DEFAULT NULL,
  15. `province` varchar(64) DEFAULT NULL,
  16. `status` varchar(16) NOT NULL,
  17. `omr_absent` bit(1) NOT NULL,
  18. `question_filled` bit(1) NOT NULL,
  19. `subjective_filled` bit(1) NOT NULL,
  20. `assigned` bit(1) NOT NULL,
  21. `absent_suspect` bit(1) NOT NULL,
  22. `incomplete` bit(1) NOT NULL,
  23. `card_number` int DEFAULT NULL,
  24. `device` varchar(32) DEFAULT NULL,
  25. `paper_type` varchar(16) NOT NULL,
  26. `exam_status` varchar(32) DEFAULT NULL,
  27. `breach_code` varchar(32) DEFAULT NULL,
  28. `file_upload_status` varchar(16) DEFAULT NULL,
  29. `data_upload_status` varchar(16) DEFAULT NULL,
  30. `check_mark` bit(1) NOT NULL,
  31. `assigned_check_count` int DEFAULT NULL,
  32. `assigned_suspect` bit(1) NOT NULL,
  33. `image_check_status` varchar(32) NOT NULL,
  34. `creator_id` bigint DEFAULT NULL,
  35. `updater_id` bigint DEFAULT NULL,
  36. `create_time` bigint DEFAULT NULL,
  37. `update_time` bigint DEFAULT NULL,
  38. PRIMARY KEY (`id`),
  39. UNIQUE KEY `exam_student_subject` (`exam_id`, `subject_code`, `exam_number`),
  40. KEY `exam_assigned` (`exam_id`, `assigned`, `assigned_check_count`),
  41. KEY `exam_image_check_status` (`exam_id`, `image_check_status`)
  42. ) ENGINE = InnoDB
  43. DEFAULT CHARSET = utf8mb4;
  44. -- ----------------------------
  45. -- Table structure for sc_answer_card
  46. -- ----------------------------
  47. CREATE TABLE IF NOT EXISTS `sc_answer_card`
  48. (
  49. `exam_id` bigint NOT NULL,
  50. `number` int NOT NULL,
  51. `code` varchar(128) DEFAULT NULL,
  52. `paper_count` int NOT NULL,
  53. `path` varchar(255) NOT NULL,
  54. `md5` varchar(32) NOT NULL,
  55. `source` varchar(16) NOT NULL,
  56. `need_adapte` bit(1) NOT NULL,
  57. `single_page` bit(1) NOT NULL,
  58. `slice_config` text NOT NULL,
  59. `dpi` int DEFAULT NULL,
  60. `slice_name` text DEFAULT NULL,
  61. `parameter` text DEFAULT NULL,
  62. `remark` varchar(255) DEFAULT NULL,
  63. `creator_id` bigint DEFAULT NULL,
  64. `updater_id` bigint DEFAULT NULL,
  65. `create_time` bigint DEFAULT NULL,
  66. `update_time` bigint DEFAULT NULL,
  67. PRIMARY KEY (`exam_id`, `number`)
  68. ) ENGINE = InnoDB
  69. DEFAULT CHARSET = utf8mb4;
  70. -- ----------------------------
  71. -- Table structure for sc_exam
  72. -- ----------------------------
  73. CREATE TABLE IF NOT EXISTS `sc_exam`
  74. (
  75. `id` bigint NOT NULL AUTO_INCREMENT,
  76. `name` varchar(128) NOT NULL,
  77. `enable` bit(1) NOT NULL,
  78. `mode` varchar(16) NOT NULL,
  79. `scan_by_package` bit(1) NOT NULL,
  80. `allow_unexist_paper` bit(1) NOT NULL,
  81. `answer_front_card_type` int NOT NULL,
  82. `enable_single_page_answer` bit(1) NOT NULL,
  83. `enable_upload` bit(1) NOT NULL,
  84. `enable_sync_verify` bit(1) NOT NULL,
  85. `exam_number_fill_count` int DEFAULT NULL,
  86. `paper_type_barcode_content` text DEFAULT NULL,
  87. `absent_barcode_content` varchar(16) DEFAULT NULL,
  88. `image_transfer_mode` varchar(32) DEFAULT NULL,
  89. `image_check_ratio` double DEFAULT NULL,
  90. `image_check_order` varchar(50) DEFAULT NULL,
  91. `scanner_assigned_max_count` int DEFAULT NULL,
  92. `scanner_assigned_verify_password` varchar(50) DEFAULT NULL,
  93. `year` int DEFAULT NULL,
  94. `year_half` int DEFAULT NULL,
  95. `scan_site` varchar(50) DEFAULT NULL,
  96. `data_sync_time` bigint DEFAULT NULL,
  97. `card_sync_time` bigint DEFAULT NULL,
  98. `creator_id` bigint DEFAULT NULL,
  99. `updater_id` bigint DEFAULT NULL,
  100. `create_time` bigint DEFAULT NULL,
  101. `update_time` bigint DEFAULT NULL,
  102. PRIMARY KEY (`id`)
  103. ) ENGINE = InnoDB
  104. DEFAULT CHARSET = utf8mb4;
  105. -- ----------------------------
  106. -- Table structure for sc_exam_summary
  107. -- ----------------------------
  108. CREATE TABLE IF NOT EXISTS `sc_exam_summary`
  109. (
  110. `id` bigint NOT NULL,
  111. `student_count` int(11) NOT NULL,
  112. `subject_count` int(11) NOT NULL,
  113. `batch_count` int(11) NOT NULL,
  114. `answer_scanned_count` int(11) NOT NULL,
  115. `answer_unexist_count` int(11) NOT NULL,
  116. `answer_manual_absent_count` int(11) NOT NULL,
  117. `answer_omr_absent_count` int(11) NOT NULL,
  118. `answer_absent_suspect_count` int(11) NOT NULL,
  119. `answer_incomplete_count` int(11) NOT NULL,
  120. `answer_assigned_count` int(11) NOT NULL,
  121. `answer_mismatch_count` int(11) NOT NULL,
  122. `answer_batch_count` int(11) NOT NULL,
  123. `package_total_count` int(11) NOT NULL,
  124. `package_scanned_count` int(11) NOT NULL,
  125. `student_answer_count` int(11) NOT NULL,
  126. `upload_progress` double NOT NULL,
  127. PRIMARY KEY (`id`)
  128. ) ENGINE = InnoDB
  129. DEFAULT CHARSET = utf8mb4;
  130. -- ----------------------------
  131. -- Table structure for sc_omr_task
  132. -- ----------------------------
  133. CREATE TABLE IF NOT EXISTS `sc_omr_task`
  134. (
  135. `id` bigint NOT NULL AUTO_INCREMENT,
  136. `exam_id` bigint NOT NULL,
  137. `group_id` bigint NOT NULL,
  138. `student_id` bigint NOT NULL,
  139. `paper_number` int NOT NULL,
  140. `paper_id` int NOT NULL,
  141. `card_number` int NOT NULL,
  142. `status` varchar(16) NOT NULL,
  143. `device` varchar(64) DEFAULT NULL,
  144. `pages` text NOT NULL,
  145. `creator_id` bigint DEFAULT NULL,
  146. `updater_id` bigint DEFAULT NULL,
  147. `create_time` bigint DEFAULT NULL,
  148. `update_time` bigint DEFAULT NULL,
  149. PRIMARY KEY (`id`),
  150. UNIQUE KEY `group_paper` (`group_id`, `paper_id`),
  151. KEY `exam_status` (`exam_id`, `status`, `student_id`),
  152. KEY `group_student` (`group_id`, `student_id`)
  153. ) ENGINE = InnoDB
  154. DEFAULT CHARSET = utf8mb4;
  155. -- ----------------------------
  156. -- Table structure for sc_package_card
  157. -- ----------------------------
  158. CREATE TABLE IF NOT EXISTS `sc_package_card`
  159. (
  160. `id` bigint NOT NULL AUTO_INCREMENT,
  161. `exam_id` bigint NOT NULL,
  162. `path` varchar(255) NOT NULL,
  163. `md5` varchar(32) NOT NULL,
  164. `source` varchar(16) NOT NULL,
  165. `creator_id` bigint DEFAULT NULL,
  166. `updater_id` bigint DEFAULT NULL,
  167. `create_time` bigint DEFAULT NULL,
  168. `update_time` bigint DEFAULT NULL,
  169. PRIMARY KEY (`id`),
  170. KEY `exam` (`exam_id`)
  171. ) ENGINE = InnoDB
  172. DEFAULT CHARSET = utf8mb4;
  173. -- ----------------------------
  174. -- Table structure for sc_package_task
  175. -- ----------------------------
  176. CREATE TABLE IF NOT EXISTS `sc_package_task`
  177. (
  178. `id` bigint NOT NULL AUTO_INCREMENT,
  179. `exam_id` bigint NOT NULL,
  180. `package_code` varchar(64) NOT NULL,
  181. `status` varchar(16) NOT NULL,
  182. `device` varchar(64) NOT NULL,
  183. `creator_id` bigint DEFAULT NULL,
  184. `updater_id` bigint DEFAULT NULL,
  185. `create_time` bigint DEFAULT NULL,
  186. `update_time` bigint DEFAULT NULL,
  187. PRIMARY KEY (`id`),
  188. KEY `exam_package` (`exam_id`, `package_code`)
  189. ) ENGINE = InnoDB
  190. DEFAULT CHARSET = utf8mb4;
  191. -- ----------------------------
  192. -- Table structure for sc_scanner
  193. -- ----------------------------
  194. CREATE TABLE IF NOT EXISTS `sc_scanner`
  195. (
  196. `device` varchar(64) NOT NULL,
  197. `device_name` varchar(200) NOT NULL,
  198. `last_login_time` bigint NOT NULL,
  199. `create_time` bigint DEFAULT NULL,
  200. `update_time` bigint DEFAULT NULL,
  201. PRIMARY KEY (`device`)
  202. ) ENGINE = InnoDB
  203. DEFAULT CHARSET = utf8mb4;
  204. -- ----------------------------
  205. -- Table structure for ss_system_config
  206. -- ----------------------------
  207. CREATE TABLE IF NOT EXISTS `sc_system_config`
  208. (
  209. `id` bigint NOT NULL AUTO_INCREMENT,
  210. `scanner_enable_login` bit(1) NOT NULL,
  211. `scanner_password` varchar(16) NOT NULL,
  212. `client_version` varchar(16) DEFAULT NULL,
  213. `client_uri` varchar(255) DEFAULT NULL,
  214. `client_md5` varchar(32) DEFAULT NULL,
  215. `client_update_time` bigint DEFAULT NULL,
  216. PRIMARY KEY (`id`)
  217. ) ENGINE = InnoDB
  218. DEFAULT CHARSET = utf8mb4;
  219. CREATE TABLE IF NOT EXISTS `sc_package_result`
  220. (
  221. `exam_id` bigint NOT NULL,
  222. `package_code` varchar(64) NOT NULL,
  223. `device` varchar(64) NOT NULL,
  224. `path` text NOT NULL,
  225. `assigned` bit(1) NOT NULL,
  226. `creator_id` bigint DEFAULT NULL,
  227. `updater_id` bigint DEFAULT NULL,
  228. `create_time` bigint DEFAULT NULL,
  229. `update_time` bigint DEFAULT NULL,
  230. `upload_time` bigint DEFAULT NULL,
  231. PRIMARY KEY (`exam_id`, `package_code`)
  232. ) ENGINE = InnoDB
  233. DEFAULT CHARSET = utf8mb4;
  234. CREATE TABLE IF NOT EXISTS `sc_scanner_card`
  235. (
  236. `exam_id` bigint NOT NULL,
  237. `device` varchar(64) NOT NULL,
  238. `card_number` int NOT NULL,
  239. `creator_id` bigint DEFAULT NULL,
  240. `updater_id` bigint DEFAULT NULL,
  241. `create_time` bigint DEFAULT NULL,
  242. `update_time` bigint DEFAULT NULL,
  243. PRIMARY KEY (`exam_id`, `device`)
  244. ) ENGINE = InnoDB
  245. DEFAULT CHARSET = utf8mb4;
  246. CREATE TABLE IF NOT EXISTS `sc_batch`
  247. (
  248. `id` bigint NOT NULL AUTO_INCREMENT,
  249. `exam_id` bigint NOT NULL,
  250. `device` varchar(64) NOT NULL,
  251. `package_code` varchar(64) DEFAULT NULL,
  252. `subject_code` varchar(64) DEFAULT NULL,
  253. `scan_count` int NOT NULL,
  254. `assigned_count` int NOT NULL,
  255. `status` varchar(16) NOT NULL,
  256. `verify_status` varchar(16) DEFAULT NULL,
  257. `check_status` varchar(16) DEFAULT NULL,
  258. `check_image_user_id` bigint DEFAULT NULL,
  259. `check_image_time` bigint DEFAULT NULL,
  260. `creator_id` bigint DEFAULT NULL,
  261. `updater_id` bigint DEFAULT NULL,
  262. `create_time` bigint DEFAULT NULL,
  263. `update_time` bigint DEFAULT NULL,
  264. PRIMARY KEY (`id`),
  265. KEY `exam_verify_status` (`exam_id`, `verify_status`)
  266. ) ENGINE = InnoDB
  267. DEFAULT CHARSET = utf8mb4;
  268. CREATE TABLE IF NOT EXISTS `sc_batch_paper`
  269. (
  270. `batch_id` bigint(20) NOT NULL,
  271. `student_id` bigint(20) NOT NULL,
  272. `paper_number` int(11) NOT NULL,
  273. `paper_id` bigint(20) NOT NULL,
  274. `card_number` int(11) NOT NULL,
  275. `assigned` bit(1) NOT NULL,
  276. `need_check` bit(1) NOT NULL,
  277. `creator_id` bigint DEFAULT NULL,
  278. `updater_id` bigint DEFAULT NULL,
  279. `create_time` bigint DEFAULT NULL,
  280. `update_time` bigint DEFAULT NULL,
  281. PRIMARY KEY (`batch_id`, `student_id`, `paper_number`),
  282. UNIQUE KEY `paper_id` (`paper_id`)
  283. ) ENGINE = InnoDB
  284. DEFAULT CHARSET = utf8mb4;
  285. CREATE TABLE IF NOT EXISTS `sc_paper`
  286. (
  287. `id` bigint NOT NULL AUTO_INCREMENT,
  288. `exam_id` bigint NOT NULL,
  289. `card_number` int NOT NULL,
  290. `number` int NOT NULL,
  291. `page_count` int NOT NULL,
  292. `mismatch` bit(1) NOT NULL,
  293. `assigned` bit(1) NOT NULL,
  294. `assigned_suspect` bit(1) NOT NULL,
  295. `question_filled` bit(1) NOT NULL,
  296. `subjective_filled` bit(1) NOT NULL,
  297. `omr_exam_number` varchar(255) NOT NULL,
  298. `creator_id` bigint DEFAULT NULL,
  299. `updater_id` bigint DEFAULT NULL,
  300. `create_time` bigint DEFAULT NULL,
  301. `update_time` bigint DEFAULT NULL,
  302. PRIMARY KEY (`id`),
  303. KEY `mismatch` (`exam_id`, `mismatch`)
  304. ) ENGINE = InnoDB
  305. DEFAULT CHARSET = utf8mb4;
  306. CREATE TABLE IF NOT EXISTS `sc_paper_page`
  307. (
  308. `paper_id` bigint NOT NULL,
  309. `page_index` int NOT NULL,
  310. `absent` text DEFAULT NULL,
  311. `breach` text DEFAULT NULL,
  312. `paper_type` text DEFAULT NULL,
  313. `question` text DEFAULT NULL,
  314. `selective` text DEFAULT NULL,
  315. `sheet_path` varchar(255) NOT NULL,
  316. `slice_path` text DEFAULT NULL,
  317. `recog_data` longtext DEFAULT NULL,
  318. `creator_id` bigint DEFAULT NULL,
  319. `updater_id` bigint DEFAULT NULL,
  320. `create_time` bigint DEFAULT NULL,
  321. `update_time` bigint DEFAULT NULL,
  322. PRIMARY KEY (`paper_id`, `page_index`)
  323. ) ENGINE = InnoDB
  324. DEFAULT CHARSET = utf8mb4;
  325. CREATE TABLE IF NOT EXISTS `sc_paper_structure`
  326. (
  327. `id` bigint NOT NULL AUTO_INCREMENT,
  328. `exam_id` bigint NOT NULL,
  329. `card_number` int NOT NULL,
  330. `paper_number` int NOT NULL,
  331. `page_index` int NOT NULL,
  332. `field` varchar(16) NOT NULL,
  333. `question_number` int NOT NULL,
  334. `single` bit(1) NOT NULL,
  335. `creator_id` bigint DEFAULT NULL,
  336. `updater_id` bigint DEFAULT NULL,
  337. `create_time` bigint DEFAULT NULL,
  338. `update_time` bigint DEFAULT NULL,
  339. PRIMARY KEY (`id`),
  340. UNIQUE KEY `IDX_PAPER_STRUCTURE_001` (`exam_id`, `card_number`, `paper_number`, `page_index`, `field`,
  341. `question_number`)
  342. ) ENGINE = InnoDB
  343. DEFAULT CHARSET = utf8mb4;
  344. CREATE TABLE IF NOT EXISTS `sc_question`
  345. (
  346. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  347. `subject_code` varchar(32) NOT NULL COMMENT '科目代码',
  348. `objective` tinyint(1) NOT NULL COMMENT '是否客观题',
  349. `main_number` int(11) NOT NULL COMMENT '大题号',
  350. `sub_number` varchar(32) NOT NULL COMMENT '小题号',
  351. `main_title` varchar(128) NOT NULL COMMENT '大题名称',
  352. `creator_id` bigint DEFAULT NULL,
  353. `updater_id` bigint DEFAULT NULL,
  354. `create_time` bigint DEFAULT NULL,
  355. `update_time` bigint DEFAULT NULL,
  356. PRIMARY KEY (`id`),
  357. UNIQUE KEY `index1` (`subject_code`,`main_number`, `sub_number`)
  358. ) ENGINE = InnoDB
  359. DEFAULT CHARSET = utf8mb4 COMMENT ='小题信息表';
  360. CREATE TABLE IF NOT EXISTS `sc_omr_group`
  361. (
  362. `id` bigint NOT NULL AUTO_INCREMENT,
  363. `exam_id` bigint NOT NULL,
  364. `subject_code` varchar(64) NOT NULL,
  365. `fixed` bit(1) NOT NULL,
  366. `stage` varchar(16) NOT NULL,
  367. `conditions` text NOT NULL,
  368. `total_count` int NOT NULL,
  369. `creator_id` bigint DEFAULT NULL,
  370. `updater_id` bigint DEFAULT NULL,
  371. `create_time` bigint DEFAULT NULL,
  372. `update_time` bigint DEFAULT NULL,
  373. PRIMARY KEY (`id`),
  374. KEY `exam_fixed` (`exam_id`,`subject_code` , `fixed`)
  375. ) ENGINE = InnoDB
  376. DEFAULT CHARSET = utf8mb4;
  377. CREATE TABLE IF NOT EXISTS `sc_refix_batch`
  378. (
  379. `id` bigint NOT NULL AUTO_INCREMENT,
  380. `exam_id` bigint NOT NULL,
  381. `card_number` int NOT NULL,
  382. `conditions` text NOT NULL,
  383. `update_slice` bit(1) NOT NULL,
  384. `total_count` int NOT NULL,
  385. `sucess_count` int NOT NULL,
  386. `finished` bit(1) NOT NULL,
  387. `creator_id` bigint DEFAULT NULL,
  388. `updater_id` bigint DEFAULT NULL,
  389. `create_time` bigint DEFAULT NULL,
  390. `update_time` bigint DEFAULT NULL,
  391. PRIMARY KEY (`id`)
  392. ) ENGINE = InnoDB
  393. DEFAULT CHARSET = utf8mb4;
  394. CREATE TABLE IF NOT EXISTS `sc_student_paper`
  395. (
  396. `student_id` bigint NOT NULL,
  397. `paper_number` int NOT NULL,
  398. `paper_id` bigint NOT NULL,
  399. `create_time` bigint DEFAULT NULL,
  400. `update_time` bigint DEFAULT NULL,
  401. PRIMARY KEY (`student_id`, `paper_number`),
  402. UNIQUE KEY `paper_id` (`paper_id`)
  403. ) ENGINE = InnoDB
  404. DEFAULT CHARSET = utf8mb4;
  405. CREATE TABLE IF NOT EXISTS `sc_subject`
  406. (
  407. `exam_id` bigint NOT NULL,
  408. `code` varchar(64) NOT NULL,
  409. `name` varchar(64) NOT NULL,
  410. `paper_type_barcode_content` text DEFAULT NULL,
  411. `creator_id` bigint DEFAULT NULL,
  412. `updater_id` bigint DEFAULT NULL,
  413. `create_time` bigint DEFAULT NULL,
  414. `update_time` bigint DEFAULT NULL,
  415. PRIMARY KEY (`exam_id`, `code`)
  416. ) ENGINE = InnoDB
  417. DEFAULT CHARSET = utf8mb4;
  418. CREATE TABLE IF NOT EXISTS `sc_file_property`
  419. (
  420. `path` varchar(255) NOT NULL,
  421. `md5` varchar(32) NOT NULL,
  422. `exam_id` bigint NOT NULL,
  423. `file_size` bigint NOT NULL,
  424. `create_time` bigint DEFAULT NULL,
  425. `update_time` bigint DEFAULT NULL,
  426. PRIMARY KEY (`path`)
  427. ) ENGINE = InnoDB
  428. DEFAULT CHARSET = utf8mb4;
  429. CREATE TABLE IF NOT EXISTS `sc_user`
  430. (
  431. `id` int(11) NOT NULL AUTO_INCREMENT,
  432. `login_name` varchar(64) NOT NULL,
  433. `name` varchar(64) NOT NULL,
  434. `password` varchar(64) NOT NULL,
  435. `role` varchar(16) NOT NULL,
  436. `enable` tinyint(1) NOT NULL,
  437. `device` varchar(64) DEFAULT NULL,
  438. `creator_id` bigint DEFAULT NULL,
  439. `updater_id` bigint DEFAULT NULL,
  440. `create_time` bigint DEFAULT NULL,
  441. `update_time` bigint DEFAULT NULL,
  442. PRIMARY KEY (`id`),
  443. UNIQUE KEY `login_name` (`login_name`)
  444. ) ENGINE = InnoDB
  445. DEFAULT CHARSET = utf8mb4;
  446. CREATE TABLE IF NOT EXISTS `sc_adapte_file`
  447. (
  448. `exam_id` bigint NOT NULL,
  449. `card_number` int NOT NULL,
  450. `role` varchar(16) NOT NULL,
  451. `device` varchar(64) NOT NULL,
  452. `uri` varchar(255) NOT NULL,
  453. `md5` varchar(32) NOT NULL,
  454. `dpi` int DEFAULT NULL,
  455. `create_time` bigint DEFAULT NULL,
  456. `update_time` bigint DEFAULT NULL,
  457. PRIMARY KEY (`exam_id`, `card_number`, `role`, `device`)
  458. ) ENGINE = InnoDB
  459. DEFAULT CHARSET = utf8mb4;
  460. CREATE TABLE IF NOT EXISTS `sc_student_answer_task`
  461. (
  462. `id` bigint NOT NULL AUTO_INCREMENT,
  463. `exam_id` bigint NOT NULL,
  464. `group_id` bigint NOT NULL,
  465. `student_id` bigint NOT NULL,
  466. `status` varchar(16) NOT NULL,
  467. `device` varchar(64) DEFAULT NULL,
  468. `creator_id` bigint DEFAULT NULL,
  469. `updater_id` bigint DEFAULT NULL,
  470. `create_time` bigint DEFAULT NULL,
  471. `update_time` bigint DEFAULT NULL,
  472. PRIMARY KEY (`id`),
  473. UNIQUE KEY `group_student` (`group_id`, `student_id`),
  474. KEY `exam_status` (`exam_id`, `student_id`, `status`)
  475. ) ENGINE = InnoDB
  476. DEFAULT CHARSET = utf8mb4;
  477. CREATE TABLE IF NOT EXISTS `sc_student_answer_group`
  478. (
  479. `id` bigint NOT NULL AUTO_INCREMENT,
  480. `exam_id` bigint NOT NULL,
  481. `conditions` text NOT NULL,
  482. `total_count` int NOT NULL,
  483. `creator_id` bigint DEFAULT NULL,
  484. `updater_id` bigint DEFAULT NULL,
  485. `create_time` bigint DEFAULT NULL,
  486. `update_time` bigint DEFAULT NULL,
  487. PRIMARY KEY (`id`)
  488. ) ENGINE = InnoDB
  489. DEFAULT CHARSET = utf8mb4;
  490. CREATE TABLE IF NOT EXISTS `sc_answer_card_subject`
  491. (
  492. `exam_id` bigint NOT NULL,
  493. `card_number` int NOT NULL,
  494. `subject_code` varchar(64) NOT NULL,
  495. `create_time` bigint DEFAULT NULL,
  496. `update_time` bigint DEFAULT NULL,
  497. PRIMARY KEY (`exam_id`, `card_number`, `subject_code`)
  498. ) ENGINE = InnoDB
  499. DEFAULT CHARSET = utf8mb4;
  500. -- ----------------------------
  501. -- Table structure for sc_assigned_check_history
  502. -- ----------------------------
  503. CREATE TABLE IF NOT EXISTS `sc_assigned_check_history`
  504. (
  505. `id` bigint NOT NULL AUTO_INCREMENT,
  506. `exam_id` bigint NOT NULL,
  507. `student_id` bigint NOT NULL,
  508. `user_id` bigint NOT NULL,
  509. `creator_id` bigint DEFAULT NULL,
  510. `updater_id` bigint DEFAULT NULL,
  511. `create_time` bigint DEFAULT NULL,
  512. `update_time` bigint DEFAULT NULL,
  513. PRIMARY KEY (`id`),
  514. UNIQUE KEY `student_user` (`student_id`, `user_id`),
  515. KEY `student` (`student_id`)
  516. ) ENGINE = InnoDB
  517. DEFAULT CHARSET = utf8mb4;
  518. CREATE TABLE IF NOT EXISTS `sc_mark_site`
  519. (
  520. `id` bigint NOT NULL AUTO_INCREMENT,
  521. `exam_id` bigint NOT NULL,
  522. `subject_code` varchar(100) NOT NULL,
  523. `paper_type` varchar(100) NOT NULL,
  524. `odd_number` varchar(100) NOT NULL,
  525. `even_number` varchar(100) NOT NULL,
  526. `creator_id` bigint DEFAULT NULL,
  527. `updater_id` bigint DEFAULT NULL,
  528. `create_time` bigint DEFAULT NULL,
  529. `update_time` bigint DEFAULT NULL,
  530. PRIMARY KEY (`id`),
  531. UNIQUE KEY `exam_subject_paper` (`exam_id`, `subject_code`, `paper_type`)
  532. ) ENGINE = InnoDB
  533. DEFAULT CHARSET = utf8mb4;
  534. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',0,1,'1','作文');
  535. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'1','听力');
  536. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'2','听力');
  537. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'3','听力');
  538. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'4','听力');
  539. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'5','听力');
  540. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'6','听力');
  541. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'7','听力');
  542. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'8','听力');
  543. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'9','听力');
  544. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'10','听力');
  545. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'11','听力');
  546. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'12','听力');
  547. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'13','听力');
  548. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'14','听力');
  549. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'15','听力');
  550. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'16','听力');
  551. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'17','听力');
  552. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'18','听力');
  553. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'19','听力');
  554. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'20','听力');
  555. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'21','听力');
  556. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'22','听力');
  557. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'23','听力');
  558. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'24','听力');
  559. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,2,'25','听力');
  560. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'26','阅读理解');
  561. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'27','阅读理解');
  562. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'28','阅读理解');
  563. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'29','阅读理解');
  564. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'30','阅读理解');
  565. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'31','阅读理解');
  566. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'32','阅读理解');
  567. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'33','阅读理解');
  568. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'34','阅读理解');
  569. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'35','阅读理解');
  570. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'36','阅读理解');
  571. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'37','阅读理解');
  572. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'38','阅读理解');
  573. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'39','阅读理解');
  574. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'40','阅读理解');
  575. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'41','阅读理解');
  576. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'42','阅读理解');
  577. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'43','阅读理解');
  578. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'44','阅读理解');
  579. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'45','阅读理解');
  580. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'46','阅读理解');
  581. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'47','阅读理解');
  582. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'48','阅读理解');
  583. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'49','阅读理解');
  584. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'50','阅读理解');
  585. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'51','阅读理解');
  586. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'52','阅读理解');
  587. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'53','阅读理解');
  588. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'54','阅读理解');
  589. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',1,3,'55','阅读理解');
  590. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('1',0,4,'1','翻译');
  591. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',0,1,'1','作文');
  592. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'1','听力');
  593. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'2','听力');
  594. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'3','听力');
  595. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'4','听力');
  596. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'5','听力');
  597. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'6','听力');
  598. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'7','听力');
  599. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'8','听力');
  600. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'9','听力');
  601. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'10','听力');
  602. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'11','听力');
  603. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'12','听力');
  604. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'13','听力');
  605. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'14','听力');
  606. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'15','听力');
  607. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'16','听力');
  608. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'17','听力');
  609. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'18','听力');
  610. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'19','听力');
  611. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'20','听力');
  612. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'21','听力');
  613. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'22','听力');
  614. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'23','听力');
  615. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'24','听力');
  616. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,2,'25','听力');
  617. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'26','阅读理解');
  618. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'27','阅读理解');
  619. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'28','阅读理解');
  620. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'29','阅读理解');
  621. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'30','阅读理解');
  622. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'31','阅读理解');
  623. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'32','阅读理解');
  624. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'33','阅读理解');
  625. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'34','阅读理解');
  626. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'35','阅读理解');
  627. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'36','阅读理解');
  628. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'37','阅读理解');
  629. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'38','阅读理解');
  630. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'39','阅读理解');
  631. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'40','阅读理解');
  632. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'41','阅读理解');
  633. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'42','阅读理解');
  634. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'43','阅读理解');
  635. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'44','阅读理解');
  636. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'45','阅读理解');
  637. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'46','阅读理解');
  638. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'47','阅读理解');
  639. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'48','阅读理解');
  640. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'49','阅读理解');
  641. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'50','阅读理解');
  642. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'51','阅读理解');
  643. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'52','阅读理解');
  644. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'53','阅读理解');
  645. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'54','阅读理解');
  646. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',1,3,'55','阅读理解');
  647. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('2',0,4,'1','翻译');
  648. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'1','听力');
  649. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'2','听力');
  650. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'3','听力');
  651. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'4','听力');
  652. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'5','听力');
  653. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'6','听力');
  654. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'7','听力');
  655. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'8','听力');
  656. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'9','听力');
  657. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'10','听力');
  658. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'11','听力');
  659. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'12','听力');
  660. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'13','听力');
  661. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'14','听力');
  662. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,1,'15','听力');
  663. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'16','文字和词汇');
  664. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'17','文字和词汇');
  665. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'18','文字和词汇');
  666. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'19','文字和词汇');
  667. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'20','文字和词汇');
  668. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'21','文字和词汇');
  669. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'22','文字和词汇');
  670. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'23','文字和词汇');
  671. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'24','文字和词汇');
  672. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'25','文字和词汇');
  673. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'26','文字和词汇');
  674. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'27','文字和词汇');
  675. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'28','文字和词汇');
  676. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'29','文字和词汇');
  677. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'30','文字和词汇');
  678. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'31','文字和词汇');
  679. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'32','文字和词汇');
  680. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'33','文字和词汇');
  681. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'34','文字和词汇');
  682. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'35','文字和词汇');
  683. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'36','文字和词汇');
  684. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'37','文字和词汇');
  685. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'38','文字和词汇');
  686. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'39','文字和词汇');
  687. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'40','文字和词汇');
  688. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'41','文字和词汇');
  689. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'42','文字和词汇');
  690. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'43','文字和词汇');
  691. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'44','文字和词汇');
  692. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,2,'45','文字和词汇');
  693. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'46','文法');
  694. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'47','文法');
  695. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'48','文法');
  696. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'49','文法');
  697. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'50','文法');
  698. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'51','文法');
  699. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'52','文法');
  700. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'53','文法');
  701. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'54','文法');
  702. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'55','文法');
  703. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'56','文法');
  704. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'57','文法');
  705. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'58','文法');
  706. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'59','文法');
  707. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'60','文法');
  708. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'61','文法');
  709. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'62','文法');
  710. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'63','文法');
  711. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'64','文法');
  712. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,3,'65','文法');
  713. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'66','讲解');
  714. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'67','讲解');
  715. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'68','讲解');
  716. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'69','讲解');
  717. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'70','讲解');
  718. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'71','讲解');
  719. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'72','讲解');
  720. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'73','讲解');
  721. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'74','讲解');
  722. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'75','讲解');
  723. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'76','讲解');
  724. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'77','讲解');
  725. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'78','讲解');
  726. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'79','讲解');
  727. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'80','讲解');
  728. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'81','讲解');
  729. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'82','讲解');
  730. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'83','讲解');
  731. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'84','讲解');
  732. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',1,4,'85','讲解');
  733. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',0,5,'1','翻译和作文');
  734. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',0,5,'2','翻译和作文');
  735. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('3',0,5,'3','翻译和作文');
  736. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'1','听力');
  737. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'2','听力');
  738. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'3','听力');
  739. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'4','听力');
  740. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'5','听力');
  741. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'6','听力');
  742. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'7','听力');
  743. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'8','听力');
  744. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'9','听力');
  745. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'10','听力');
  746. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'11','听力');
  747. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'12','听力');
  748. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'13','听力');
  749. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'14','听力');
  750. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'15','听力');
  751. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'16','听力');
  752. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'17','听力');
  753. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'18','听力');
  754. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'19','听力');
  755. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'20','听力');
  756. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'21','听力');
  757. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'22','听力');
  758. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'23','听力');
  759. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'24','听力');
  760. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,1,'25','听力');
  761. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'26','词汇和文法');
  762. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'27','词汇和文法');
  763. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'28','词汇和文法');
  764. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'29','词汇和文法');
  765. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'30','词汇和文法');
  766. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'31','词汇和文法');
  767. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'32','词汇和文法');
  768. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'33','词汇和文法');
  769. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'34','词汇和文法');
  770. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'35','词汇和文法');
  771. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'36','词汇和文法');
  772. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'37','词汇和文法');
  773. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'38','词汇和文法');
  774. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'39','词汇和文法');
  775. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'40','词汇和文法');
  776. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'41','词汇和文法');
  777. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'42','词汇和文法');
  778. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'43','词汇和文法');
  779. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'44','词汇和文法');
  780. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,2,'45','词汇和文法');
  781. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'46','讲解');
  782. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'47','讲解');
  783. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'48','讲解');
  784. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'49','讲解');
  785. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'50','讲解');
  786. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'51','讲解');
  787. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'52','讲解');
  788. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'53','讲解');
  789. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'54','讲解');
  790. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'55','讲解');
  791. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'56','讲解');
  792. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'57','讲解');
  793. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'58','讲解');
  794. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'59','讲解');
  795. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'60','讲解');
  796. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'61','讲解');
  797. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'62','讲解');
  798. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'63','讲解');
  799. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'64','讲解');
  800. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'65','讲解');
  801. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'66','讲解');
  802. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'67','讲解');
  803. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',1,3,'68','讲解');
  804. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',0,4,'1','和文中译');
  805. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',0,4,'2','和文中译');
  806. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('4',0,5,'1','作文');
  807. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'1','听力');
  808. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'2','听力');
  809. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'3','听力');
  810. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'4','听力');
  811. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'5','听力');
  812. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'6','听力');
  813. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'7','听力');
  814. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'8','听力');
  815. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'9','听力');
  816. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'10','听力');
  817. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'11','听力');
  818. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'12','听力');
  819. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'13','听力');
  820. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'14','听力');
  821. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'15','听力');
  822. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'16','听力');
  823. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'17','听力');
  824. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'18','听力');
  825. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'19','听力');
  826. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,1,'20','听力');
  827. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'21','阅读理解');
  828. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'22','阅读理解');
  829. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'23','阅读理解');
  830. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'24','阅读理解');
  831. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'25','阅读理解');
  832. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'26','阅读理解');
  833. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'27','阅读理解');
  834. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'28','阅读理解');
  835. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'29','阅读理解');
  836. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'30','阅读理解');
  837. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'31','阅读理解');
  838. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'32','阅读理解');
  839. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'33','阅读理解');
  840. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'34','阅读理解');
  841. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'35','阅读理解');
  842. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'36','阅读理解');
  843. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'37','阅读理解');
  844. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'38','阅读理解');
  845. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,2,'39','阅读理解');
  846. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'40','语法和词汇');
  847. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'41','语法和词汇');
  848. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'42','语法和词汇');
  849. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'43','语法和词汇');
  850. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'44','语法和词汇');
  851. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'45','语法和词汇');
  852. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'46','语法和词汇');
  853. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'47','语法和词汇');
  854. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'48','语法和词汇');
  855. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'49','语法和词汇');
  856. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'50','语法和词汇');
  857. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'51','语法和词汇');
  858. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'52','语法和词汇');
  859. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'53','语法和词汇');
  860. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'54','语法和词汇');
  861. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'55','语法和词汇');
  862. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'56','语法和词汇');
  863. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'57','语法和词汇');
  864. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'58','语法和词汇');
  865. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'59','语法和词汇');
  866. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'60','语法和词汇');
  867. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'61','语法和词汇');
  868. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'62','语法和词汇');
  869. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'63','语法和词汇');
  870. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'64','语法和词汇');
  871. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'65','语法和词汇');
  872. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'66','语法和词汇');
  873. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',1,3,'67','语法和词汇');
  874. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,4,'68','德译中');
  875. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,4,'69','德译中');
  876. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,4,'70','德译中');
  877. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'71','书面表达');
  878. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'72','书面表达');
  879. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'73','书面表达');
  880. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'74','书面表达');
  881. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'75','书面表达');
  882. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('5',0,5,'76','书面表达');
  883. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'1','听力');
  884. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'2','听力');
  885. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'3','听力');
  886. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'4','听力');
  887. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'5','听力');
  888. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'6','听力');
  889. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'7','听力');
  890. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'8','听力');
  891. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'9','听力');
  892. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'10','听力');
  893. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'11','听力');
  894. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'12','听力');
  895. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'13','听力');
  896. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'14','听力');
  897. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'15','听力');
  898. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'16','听力');
  899. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'17','听力');
  900. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'18','听力');
  901. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'19','听力');
  902. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,1,'20','听力');
  903. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'21','阅读理解');
  904. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'22','阅读理解');
  905. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'23','阅读理解');
  906. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'24','阅读理解');
  907. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'25','阅读理解');
  908. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'26','阅读理解');
  909. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'27','阅读理解');
  910. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'28','阅读理解');
  911. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'29','阅读理解');
  912. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'30','阅读理解');
  913. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'31','阅读理解');
  914. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'32','阅读理解');
  915. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'33','阅读理解');
  916. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'34','阅读理解');
  917. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'35','阅读理解');
  918. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'36','阅读理解');
  919. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'37','阅读理解');
  920. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'38','阅读理解');
  921. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'39','阅读理解');
  922. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,2,'40','阅读理解');
  923. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'41','语法和词汇');
  924. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'42','语法和词汇');
  925. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'43','语法和词汇');
  926. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'44','语法和词汇');
  927. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'45','语法和词汇');
  928. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'46','语法和词汇');
  929. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'47','语法和词汇');
  930. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'48','语法和词汇');
  931. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'49','语法和词汇');
  932. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'50','语法和词汇');
  933. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'51','语法和词汇');
  934. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'52','语法和词汇');
  935. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'53','语法和词汇');
  936. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'54','语法和词汇');
  937. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'55','语法和词汇');
  938. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'56','语法和词汇');
  939. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'57','语法和词汇');
  940. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'58','语法和词汇');
  941. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'59','语法和词汇');
  942. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',1,3,'60','语法和词汇');
  943. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',0,4,'61','德译中');
  944. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',0,4,'62','德译中');
  945. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('6',0,5,'63','书面表达');
  946. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'1','审计');
  947. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'2','审计');
  948. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'3','审计');
  949. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'4','审计');
  950. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'5','审计');
  951. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'6','审计');
  952. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'7','审计');
  953. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'8','审计');
  954. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'9','审计');
  955. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'10','审计');
  956. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'11','审计');
  957. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'12','审计');
  958. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'13','审计');
  959. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'14','审计');
  960. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,1,'15','审计');
  961. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'16','词汇和语法');
  962. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'17','词汇和语法');
  963. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'18','词汇和语法');
  964. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'19','词汇和语法');
  965. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'20','词汇和语法');
  966. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'21','词汇和语法');
  967. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'22','词汇和语法');
  968. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'23','词汇和语法');
  969. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'24','词汇和语法');
  970. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'25','词汇和语法');
  971. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'26','词汇和语法');
  972. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'27','词汇和语法');
  973. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'28','词汇和语法');
  974. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'29','词汇和语法');
  975. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'30','词汇和语法');
  976. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'31','词汇和语法');
  977. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'32','词汇和语法');
  978. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'33','词汇和语法');
  979. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'34','词汇和语法');
  980. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'35','词汇和语法');
  981. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'36','词汇和语法');
  982. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'37','词汇和语法');
  983. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'38','词汇和语法');
  984. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'39','词汇和语法');
  985. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'40','词汇和语法');
  986. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'41','词汇和语法');
  987. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'42','词汇和语法');
  988. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'43','词汇和语法');
  989. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'44','词汇和语法');
  990. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'45','词汇和语法');
  991. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'46','词汇和语法');
  992. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'47','词汇和语法');
  993. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'48','词汇和语法');
  994. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'49','词汇和语法');
  995. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,2,'50','词汇和语法');
  996. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'51','阅读理解');
  997. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'52','阅读理解');
  998. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'53','阅读理解');
  999. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'54','阅读理解');
  1000. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'55','阅读理解');
  1001. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'56','阅读理解');
  1002. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'57','阅读理解');
  1003. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'58','阅读理解');
  1004. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'59','阅读理解');
  1005. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'60','阅读理解');
  1006. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'61','阅读理解');
  1007. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'62','阅读理解');
  1008. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'63','阅读理解');
  1009. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'64','阅读理解');
  1010. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',1,3,'65','阅读理解');
  1011. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',0,4,'66','翻译');
  1012. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',0,4,'67','翻译');
  1013. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('7',0,5,'68','作文');
  1014. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'1','审计');
  1015. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'2','审计');
  1016. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'3','审计');
  1017. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'4','审计');
  1018. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'5','审计');
  1019. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'6','审计');
  1020. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'7','审计');
  1021. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'8','审计');
  1022. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'9','审计');
  1023. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'10','审计');
  1024. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'11','审计');
  1025. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'12','审计');
  1026. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'13','审计');
  1027. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'14','审计');
  1028. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,1,'15','审计');
  1029. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'16','词汇和语法');
  1030. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'17','词汇和语法');
  1031. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'18','词汇和语法');
  1032. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'19','词汇和语法');
  1033. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'20','词汇和语法');
  1034. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'21','词汇和语法');
  1035. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'22','词汇和语法');
  1036. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'23','词汇和语法');
  1037. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'24','词汇和语法');
  1038. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'25','词汇和语法');
  1039. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'26','词汇和语法');
  1040. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'27','词汇和语法');
  1041. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'28','词汇和语法');
  1042. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'29','词汇和语法');
  1043. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'30','词汇和语法');
  1044. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'31','词汇和语法');
  1045. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'32','词汇和语法');
  1046. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'33','词汇和语法');
  1047. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'34','词汇和语法');
  1048. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,2,'35','词汇和语法');
  1049. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'36','阅读理解');
  1050. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'37','阅读理解');
  1051. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'38','阅读理解');
  1052. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'39','阅读理解');
  1053. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'40','阅读理解');
  1054. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'41','阅读理解');
  1055. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'42','阅读理解');
  1056. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'43','阅读理解');
  1057. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'44','阅读理解');
  1058. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'45','阅读理解');
  1059. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'46','阅读理解');
  1060. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'47','阅读理解');
  1061. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'48','阅读理解');
  1062. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'49','阅读理解');
  1063. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',1,3,'50','阅读理解');
  1064. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',0,4,'51','翻译');
  1065. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',0,4,'52','翻译');
  1066. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('8',0,5,'53','作文');
  1067. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'1','听力');
  1068. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'2','听力');
  1069. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'3','听力');
  1070. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'4','听力');
  1071. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'5','听力');
  1072. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'6','听力');
  1073. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'7','听力');
  1074. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'8','听力');
  1075. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'9','听力');
  1076. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'10','听力');
  1077. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'11','听力');
  1078. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'12','听力');
  1079. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'13','听力');
  1080. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'14','听力');
  1081. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,1,'15','听力');
  1082. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'16','语法和词汇');
  1083. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'17','语法和词汇');
  1084. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'18','语法和词汇');
  1085. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'19','语法和词汇');
  1086. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'20','语法和词汇');
  1087. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'21','语法和词汇');
  1088. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'22','语法和词汇');
  1089. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'23','语法和词汇');
  1090. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'24','语法和词汇');
  1091. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'25','语法和词汇');
  1092. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'26','语法和词汇');
  1093. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'27','语法和词汇');
  1094. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'28','语法和词汇');
  1095. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'29','语法和词汇');
  1096. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'30','语法和词汇');
  1097. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'31','语法和词汇');
  1098. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'32','语法和词汇');
  1099. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'33','语法和词汇');
  1100. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'34','语法和词汇');
  1101. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'35','语法和词汇');
  1102. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'36','语法和词汇');
  1103. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'37','语法和词汇');
  1104. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'38','语法和词汇');
  1105. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'39','语法和词汇');
  1106. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'40','语法和词汇');
  1107. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'41','语法和词汇');
  1108. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'42','语法和词汇');
  1109. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'43','语法和词汇');
  1110. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'44','语法和词汇');
  1111. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,2,'45','语法和词汇');
  1112. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'46','阅读理解');
  1113. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'47','阅读理解');
  1114. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'48','阅读理解');
  1115. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'49','阅读理解');
  1116. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'50','阅读理解');
  1117. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'51','阅读理解');
  1118. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'52','阅读理解');
  1119. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'53','阅读理解');
  1120. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'54','阅读理解');
  1121. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'55','阅读理解');
  1122. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'56','阅读理解');
  1123. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'57','阅读理解');
  1124. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'58','阅读理解');
  1125. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'59','阅读理解');
  1126. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',1,3,'60','阅读理解');
  1127. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',0,4,'1','翻译');
  1128. INSERT INTO `sc_question` (`subject_code`,`objective`,`main_number`, `sub_number`, `main_title`) VALUES ('9',0,5,'1','作文');