scan_central_db.sql 100 KB

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