【java爬虫】爬虫获取某交易所公司半年报全量数据

news/2024/7/19 11:49:00 标签: 爬虫, python, 开发语言

上一篇文章介绍了使用selenium获取某交易所公司半年报的方法,页面中公开展示的数据一共有2222条,本文就将所有数据分享出来。

这是上一篇文章

【java爬虫】使用selenium获取某交易所公司半年报数据-CSDN博客

首先是建表sql语句

use finance_db;

/* 半年报信息表 */
drop table if exists t_report;
create table t_report (
    u_id BIGINT (20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY COMMENT '优惠券id',
    company VARCHAR (50) NOT NULL COMMENT '公司名称',
    stock VARCHAR (20) NOT NULL COMMENT '股票代码',
    income BIGINT (20) NOT NULL COMMENT '营业收入',
    profit1 BIGINT (20) NOT NULL COMMENT '净利润',
    profit2 BIGINT (20) NOT NULL COMMENT '扣非净利润',
    cashflow BIGINT (20) NOT NULL COMMENT '经营现金流',
    rate1 DOUBLE NOT NULL COMMENT '净资产收益率',
    rate2 DOUBLE NOT NULL COMMENT '基本每股收益',
    rate3 DOUBLE NOT NULL COMMENT '资产负债率'
) ENGINE=InnoDB COMMENT '半年报信息表';

 然后是以sql形式保存的数据,这边只展示部分数据,因为一篇文章的字数有限制

INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (81, '浦发银行', '600000', 91230000000, 23138000000, 20384000000, 48486000000, 3.73, 0.76, 91.93);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (82, '白云机场', '600004', 2890411400, 158022500, 139708900, 1010641700, 0.92, 0.07, 33.33);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (83, '东风汽车', '600006', 5397698200, 84874100, 31342600, 17922300, 1.04, 0.04, 51.99);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (84, '中国国贸', '600007', 1938364100, 653651200, 647510200, 992637200, 7.08, 0.65, 28.57);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (85, '上海机场', '600009', 4868588400, 132495700, 107790600, 1150477800, 0.33, 0.05, 39.99);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (86, '皖通高速', '600012', 2323838900, 839500400, 887969600, 1428122300, 6.8, 0.51, 39.4);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (87, '民生银行', '600016', 71539000000, 23777000000, 23656000000, 108631000000, 7.88, 0.46, 91.8);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (88, '日照港', '600017', 4113563600, 512365200, 487308900, 1484095700, 3.58, 0.17, 59.37);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (89, '宝钢股份', '600019', 170222163400, 4552374800, 3711448600, 6237979200, 2.32, 0.2, 42.71);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (90, '山东钢铁', '600022', 46968238500, 249650300, 394938800, 340974400, -0.01, -0.02, 55.17);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (91, '中远海能', '600026', 11575383700, 2806235700, 2419934000, 4694047000, 8.43, 0.59, 48.86);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (92, '华电国际', '600027', 5944965100, 2581899000, 2309591000, 3723809000, 5.6, 0.21, 64.57);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (93, '三一重工', '600031', 39914730000, 3400084000, 3863465000, 401959000, 5.12, 0.4, 57.9);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (94, '福建高速', '600033', 1465174700, 531095400, 524202000, 924960800, 4.81, 0.19, 21.05);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (95, '歌华有线', '600037', 1090848900, -106553100, 35326100, 232994700, -0.82, -0.08, 19.01);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (96, '四川路桥', '600039', 66512065300, 5652089700, 5621175000, 4541139600, 12.67, 0.65, 78.54);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (97, '保利发展', '600048', 137026707900, 12222473400, 11726214300, 7145970800, 6.1, 1.02, 76.99);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (98, '五矿发展', '600058', 37998954600, 198572200, 171619800, 2646581200, 3.57, 0.16, 72.07);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (99, '国投资本', '600061', 8419752600, 1687528000, 1653760600, 4234753300, 3.35, 0.26, 81.74);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (100, '南京高科', '600064', 2775030400, 1158031400, 1245299400, 295040700, 6.78, 0.67, 51.52);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (101, 'ST富润', '600070', 78073100, -103918900, -119907700, 96105300, -8.84, -0.2, 30.71);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (102, '中船科技', '600072', 1818015600, 51057400, 37834700, 428129900, 1.26, 0.07, 42.57);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (103, 'ST澄星', '600078', 1460545200, -113329000, -107393400, 324751100, -5.9, -0.17, 56.37);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (104, '东风科技', '600081', 3204151100, 30044200, 22265200, 53064600, 0.95, 0.06, 55.11);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (105, '博信股份', '600083', 142079800, -11557600, -10804700, 6031500, -14.7, -0.05, 74.91);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (106, '开创国际', '600097', 773300200, 27064300, 65402600, 214695100, -1.28, -0.11, 35.04);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (107, '广州发展', '600098', 21751331800, 1116455000, 1073824800, 1465453300, 4.52, 0.32, 58.61);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (108, '上汽集团', '600104', 326554867300, 7085046000, 5668876300, 6892777800, 2.51, 0.62, 64.14);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (109, '国金证券', '600109', 3326799700, 874471400, 825873400, -1075591700, 2.77, 0.24, 70.62);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (110, 'ST天成', '600112', 6496700, 62313200, 33994100, 6967100, -97.54, -0.12, 96.43);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (111, '中国东航', '600115', 49425000000, 6249000000, 6682000000, 16113000000, -24.1, -0.28, 91.89);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (112, '*ST西钢', '600117', 2599829400, -1057181700, 642919600, 81108500, 0, -1.01, 95.24);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (113, '铁龙物流', '600125', 6930050700, 320221800, 308630400, 73666100, 4.69, 0.25, 25.26);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (114, '东湖高新', '600133', 6352366800, 102887000, 126863300, -1727424900, 1.2, 0.1, 74.4);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (115, '*ST明诚', '600136', 353105600, -1913339400, 4269723200, 19706900, 0, -3.28, 445.06);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (116, '中青旅', '600138', 4178344100, 106474000, 100128700, 970100, 1.75, 0.15, 54.1);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (117, '兴发集团', '600141', 13609698800, 608586100, 548940400, 442895000, 2.95, 0.55, 50.31);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (118, '廊坊发展', '600149', 98408500, 7063100, 7594200, 57167800, -4.45, -0.02, 57.98);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (119, '中国船舶', '600150', 30525572600, 553181500, -116818700, 4821932400, 1.2, 0.12, 71.16);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (120, '航天机电', '600151', 4954632600, 37824000, 69261500, 432713800, 0.7, 0.03, 47.93);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (121, '建发股份', '600153', 38342644600, 1923476600, 1159075000, 23384625400, 3.44, 0.56, 79.11);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (122, '联美控股', '600167', 1853379500, 594375100, 614882200, 405828700, 5.47, 0.26, 30.73);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (123, '上海建工', '600170', 144369415500, 755907700, 628384500, -13157373600, 2.06, 0.07, 85.56);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (124, '黄河旋风', '600172', 1006452900, 219404100, 223752000, 136324300, -6.89, -0.16, 69.17);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (125, '雅戈尔', '600177', 587212900, 2064879500, 1939109400, 2570897300, 5.26, 0.45, 51.78);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (126, '莲花健康', '600186', 973641700, 50159600, 50636700, 32211900, 3.5, 0.03, 49.75);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (127, '国中水务', '600187', 121875400, 48222100, 26862700, 71865500, 1.51, 0.03, 18.78);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (128, '中牧股份', '600195', 2508298800, 268970900, 204842900, 81124500, 4.95, 0.26, 22.87);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (129, '金种子酒', '600199', 767728600, 37814700, 42620200, -12595000, -1.5, -0.06, 23.67);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (130, '新湖中宝', '600208', 2837775100, 1612721900, 1139646100, 2516604500, 3.84, 0.19, 64.53);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (131, '中再资环', '600217', 1750071700, 12058200, 8786400, -151307900, 0.47, 0.01, 64.26);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (132, '海航控股', '600221', 2763600300, -1609365000, 2311133000, 5724610000, -182.12, -0.04, 99.91);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (133, '卓朗科技', '600225', 252894500, 24900900, 3379300, 185035600, 0.97, 0.01, 64.97);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (134, '赤天化', '600227', 108633300, -158697500, -154475900, 27788600, -5.84, -0.09, 43.83);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (135, '凌钢股份', '600231', 10688778100, 99651000, -106724400, 1223757200, -1.23, -0.03, 54.52);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (136, '陕建股份', '600248', 84240393500, 2146288400, 2026235600, 5090733800, 11.09, 0.58, 89.44);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (137, '大湖股份', '600257', 590099500, -11155300, -16946400, 69332900, -1.28, -0.02, 52.77);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (138, '首旅酒店', '600258', 3608134900, 280432200, 233419400, 1993510000, 2.63, 0.25, 57.77);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (139, '广晟有色', '600259', 1114439600, 102093100, 57274800, 482492300, 2.92, 0.3, 57.45);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (140, '城建发展', '600266', 9746525700, 483819300, 452539000, 9823174800, 1.8, 0.18, 81.01);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (141, '航天信息', '600271', 6984928700, 526140500, 77711600, 650891300, 3.69, 0.28, 24.51);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (142, 'ST信通', '600289', 99511500, 94828000, 95180200, 36083300, -6.82, -0.15, 31.01);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (143, '*ST华仪', '600290', 119214900, 79797600, 90138200, 51787700, 0, -0.11, 103.24);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (144, '鄂尔多斯', '600295', 14972543600, 1690092500, 1650574700, 2834957600, 7.95, 0.6, 47.31);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (145, 'ST', '曙光', 656650900, -161431400, -168056900, 31243600, -7.79, -0.24, 45.93);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (146, '酒钢宏兴', '600307', 20615886700, 395287000, 424533100, 395110700, -3.59, -0.06, 74.06);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (147, '华泰股份', '600308', 6760294600, 167962100, 134039300, 28869100, 1.84, 0.11, 40.26);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (148, '正源股份', '600321', 518598100, -18551200, -17852100, 145302900, -1.17, -0.01, 69.47);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (149, '天房发展', '600322', 3174977800, -146652600, 206382900, 912200800, -121.39, -0.13, 95.71);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (150, '宏达股份', '600331', 1454558700, 66544200, 70596300, 48187000, -17.48, -0.03, 82.47);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (151, '美克家居', '600337', 2309180800, 86666200, 91168700, 242131300, -2.1, -0.06, 58.72);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (152, '华夏幸福', '600340', 10616159400, -1267174800, 5492479000, 155031800, -15.04, -0.33, 93.89);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (153, '长江通信', '600345', 58625100, 70627900, 69455700, 39292300, 3.17, 0.36, 12.97);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (154, '山东高速', '600350', 9709736900, 1767541100, 1719401700, 2926787700, 5.12, 0.32, 62.44);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (155, 'ST通葡', '600365', 415942500, 71314500, 34522100, 217109300, -23.38, -0.17, 67.37);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (156, '宁波韵升', '600366', 2685547100, -186784800, -191237900, 7408400, -3.1, -0.17, 35.6);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (157, '三房巷', '600370', 1073829700, 61091000, 68933700, 13972900, 0.87, 0.02, 60.37);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (158, '中文传媒', '600373', 5030408300, 845406000, 715593100, 94545200, 4.77, 0.62, 45.46);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (159, '金地集团', '600383', 3685572800, 1531681300, 1394694300, 213771200, 2.33, 0.34, 72.12);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (160, '*ST金山', '600396', 3399244400, 509670400, 513897100, 376743700, 0, -0.35, 114.21);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (161, '海澜之家', '600398', 11198976800, 1679057400, 1662532700, 2766887700, 10.87, 0.39, 53.42);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (162, '动力源', '600405', 439821500, 58780500, 58468700, 51630800, -6.79, -0.11, 66.01);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (163, '国电南瑞', '600406', 18249970800, 2499336600, 2426783500, 17537600, 5.76, 0.31, 37.55);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (164, '安泰集团', '600408', 5230515900, 272525200, 273414700, 173790400, -11.44, -0.27, 55.33);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (165, '青松建化', '600425', 214519300, 268593000, 256631500, 216403300, 4.64, 0.18, 32.53);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (166, '华鲁恒升', '600426', 12358870100, 1709585700, 1692433400, 2377385500, 6.15, 0.81, 27.53);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (167, '风神股份', '600469', 2772923300, 170040100, 166345300, 281949000, 5.61, 0.23, 55.38);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (168, '中国动力', '600482', 21316058200, 286857200, 136691900, 1353076600, 0.8, 0.13, 49.38);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (169, '龙元建设', '600491', 4766773800, 506624100, 543282400, 382138000, -4.24, -0.33, 79.31);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (170, '凤竹纺织', '600493', 441069300, 4348500, -10308200, 7535000, 0.51, 0.02, 55.3);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (171, '中化国际', '600500', 29020878900, -163974600, 562020400, 898854100, -0.99, -0.05, 56.14);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (172, '安徽建工', '600502', 37472553500, 655713200, 709370100, 1692895200, 4.95, 0.38, 84.87);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (173, '华丽家族', '600503', 43194200, -19435600, 29429400, 87060600, -0.52, -0.01, 18.2);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (174, '统一股份', '600506', 1217581900, -17623300, 21102800, 108268700, -3.99, -0.09, 80.07);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (175, '华海药业', '600521', 4294130000, 568819800, 621855100, 890637400, 7.24, 0.39, 56.75);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (176, '江南高纤', '600527', 327827100, 22231700, 12120900, 79296800, 1.02, 0.01, 5.47);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (177, '交大昂立', '600530', 183062200, 20674100, 23922600, 28341300, -6.49, -0.03, 56.98);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (178, '中国软件', '600536', 253470400, 515338300, 519675900, -1576035500, -22.89, -0.74, 69.33);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (179, '狮头股份', '600539', 210272500, 6679800, 7773700, -104969000, -1.49, -0.03, 13.22);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (180, '新赛股份', '600540', 495272100, 11130000, 478900, 223209100, 1.4, 0.02, 67.25);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (181, '安阳钢铁', '600569', 21036934100, 826383100, 867357700, 2189623500, -11.7, -0.29, 83.53);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (182, '信雅达', '600571', 859708300, 32157800, 60555900, 318161800, 2.99, 0.07, 29.26);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (183, '克劳斯', '600579', 5601196200, 897708700, 626932600, 989874600, -29.5, -1.8, 74.02);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (184, '卧龙电驱', '600580', 7919524700, 605116600, 510088400, 628910100, 6.46, 0.46, 56.32);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (185, '天地科技', '600582', 14555620800, 1386789100, 1347402800, 381337500, 6.42, 0.34, 43.03);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (186, '泰豪科技', '600590', 2070946800, 150650100, 54467700, 250642700, 4.19, 0.18, 65.01);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (187, '大连圣亚', '600593', 182167600, 19332600, 21360200, 87387700, 9.83, 0.15, 83.58);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (188, 'ST熊猫', '600599', 155886100, 41292900, 36390300, 151532800, 5.11, 0.25, 17.75);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (189, '大众交通', '600611', 1973520400, 205372100, 95935400, 70534600, 2.14, 0.09, 48.76);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (190, '神奇制药', '600613', 1205675100, 34735700, 32676000, 142354300, 1.47, 0.07, 27.59);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (191, '金枫酒业', '600616', 201105600, 117516600, 27937600, 72284500, 6, 0.18, 12.79);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (192, '海立股份', '600619', 9189653700, 48964600, 70201700, -161405800, -0.81, -0.05, 66.22);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (193, '光大嘉宝', '600622', 1180142900, 341121700, 364273000, 109216000, -4.96, -0.23, 70.46);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (194, '复旦复华', '600624', 350208800, -17178400, 2723000, 11134400, -1.97, -0.03, 50.23);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (195, '申达股份', '600626', 5572518100, -137816700, -147105600, 471829100, -4.49, -0.12, 71.22);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (196, '新世界', '600628', 532322700, 38031000, 24696200, 152250800, 0.9, 0.06, 24.83);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (197, '大众公用', '600635', 3603616900, 477521500, 640372300, 336618600, 5.67, 0.16, 58.05);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (198, '浦东金桥', '600639', 4844892200, 1512068700, 1503122500, 6038302600, 11.01, 1.35, 55.21);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (199, '外高桥', '600648', 391153600, 520751700, 413391400, -1430294400, 4.25, 0.46, 69.34);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (200, '飞乐音响', '600651', 895911700, 6960400, 9481700, 82769900, 0.29, 0, 43.82);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (201, 'ST中安', '600654', 1270632900, 6224500, 45566600, 113149500, -0.43, 0, 61.46);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (202, '尖峰集团', '600668', 1381186300, 111621800, 101697100, 27565400, 2.13, 0.32, 23.04);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (203, '*ST目药', '600671', 50953900, 23421000, 21103900, 30251000, -88.93, -0.19, 107.47);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (204, '四川金顶', '600678', 166135400, 8812100, 8255900, 18944500, 3.26, 0.03, 63.43);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (205, '南京新百', '600682', 3237999400, 321732300, 305694600, 414220600, 1.86, 0.24, 27.35);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (206, '中船防务', '600685', 5982333800, 12665300, 15478900, 2603497400, 0.08, 0.01, 57.08);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (207, '上海三毛', '600689', 516666600, 15218400, 7718800, 22420700, 3.51, 0.08, 42.86);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (208, '海尔智家', '600690', 131626581500, 8963876000, 8603977800, 6790530500, 9.16, 0.97, 60.21);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (209, '阳煤化工', '600691', 7221930000, 215138200, 229428400, 125066800, -3.65, -0.09, 72.53);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (210, '大商股份', '600694', 3978375400, 355147600, 321560000, 1258745300, 4.36, 1.25, 53.64);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (211, '中航产融', '600705', 8304616600, 725853200, 677475600, 71938222000, 1.78, 0.08, 83.67);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (212, '彩虹股份', '600707', 5239145400, 269982500, 312580500, 906034200, -1.39, -0.08, 51.54);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (213, '南京医药', '600713', 27343124500, 308641900, 300029900, 2721066400, 5.01, 0.24, 79.2);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (214, '文投控股', '600715', 277583900, -109709300, -127623600, 36992500, -14.06, -0.06, 85.88);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (215, '百花医药', '600721', 167213900, 12999600, 12277100, 6145200, 1.93, 0.03, 32.9);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (216, '鲁北化工', '600727', 2144673100, 12591900, 12140100, 238945500, 0.43, 0.02, 61.04);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (217, '重庆百货', '600729', 10155049700, 905720300, 809777600, 1184887900, 16.27, 2.29, 69.24);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (218, '爱旭股份', '600732', 16248802100, 1308824000, 1267003900, 2659560500, 13.5, 1, 66.6);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (219, '北汽蓝谷', '600733', 5770013400, -1979823800, 2511895800, -1579592300, -34.83, -0.44, 68.37);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (220, 'ST实达', '600734', 92886800, 22954300, 13321100, 50703300, 6.26, 0.01, 57.84);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (221, '新华锦', '600735', 1114292300, 30841900, 26543200, 50282700, 2.17, 0.07, 30.14);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (222, '丽尚国潮', '600738', 471973900, 45021800, 91043700, 20974600, 2.32, 0.06, 46.84);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (223, '辽宁成大', '600739', 4680417800, 496592000, 479340800, 36535300, 1.71, 0.33, 33.22);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (224, '华远地产', '600743', 4599795300, 512089400, 512635300, 678707700, -20.94, -0.28, 87.4);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (225, '华银电力', '600744', 4885193200, -154212300, -172093800, 245162500, -11.83, -0.08, 93.43);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (226, '辽宁能源', '600758', 3003475400, 255232100, 244233600, 223032000, 4.67, 0.19, 61.38);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (227, '中航沈飞', '600760', 23150071300, 1493066400, 1436625900, 9474292500, 10.99, 0.54, 69.25);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (228, '*ST园城', '600766', 78199300, 959700, 782300, 17328000, 1.67, 0, 86.07);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (229, '西藏城投', '600773', 987638100, 40024500, 40007500, 691478800, 1.06, 0.05, 73.35);
INSERT INTO `t_report`(`u_id`, `company`, `stock`, `income`, `profit1`, `profit2`, `cashflow`, `rate1`, `rate2`, `rate3`) VALUES (230, '新潮能源', '600777', 3988904600, 1151008700, 1145854700, 3181289100, 6.59, 0.17, 43.68);

全量的数据已经上传资源了,大家可以去下载

https://download.csdn.net/download/haohulala/88481190


http://www.niftyadmin.cn/n/5131436.html

相关文章

JavaScript从入门到精通系列第二十五篇:JavaScript中的Date对象

文章目录 一:Date对象简介 1:概念简介 二:Date对象 1:创建当前时间 2:创建指定时间 三:日期对象函数 1:getDate() 2:getDay() 3:getMonth() 4:getF…

业界中说的快速原型法是什么

快速原型法是一种软件开发过程,其核心思想是在开发初期快速构建一个系统的原型,即一个工作模型,以便用户和开发者能够更好地理解系统的需求和功能。这种方法强调快速迭代和用户参与,目的是更早地发现和修正问题,从而提…

锐捷smartWeb管理系统存在逻辑缺陷漏洞

通过弱口令进行登录 guest/guest 通过低权限用户构造payload: /web/xml/webuser-auth.xml访问漏洞url,直接获得所有账户的等级标志和base64加密的账号密码,解秘后即可登录后台 解密管理员的账号密码 成功登录 文笔生疏,措辞浅…

数据结构和算法(15):排序

快速排序 分治 快速排序与归并排序的分治之间的不同: 归并排序的计算量主要消耗于有序子向量的归并操作,而子向量的划分却几乎不费时间; 快速排序恰好相反,它可以在O(1)时间内,由子问题的解直接得到原问题的解&#…

python会计应用实操-企业收入与发票比对

案例:企业收入与开票 公司月底或一个季度盘点一下,收入账款与开票数额是否匹配。 使用工具:jupter lab和python 数据: 上海电子税务局已开票统计excel表 银行流水单excel表 编程思路: 两个excel对比金额&#x…

JAVA中的垃圾回收器(1)

一)垃圾回收器概述: 1.1)按照线程数来区分: 串行回收指的是在同一时间端内只允许有一个CPU用于执行垃圾回收操作,此时工作线程被暂停,直至垃圾回收工作结束,在诸如单CPU处理器或者较小的应用内存等硬件平台不是特别优越的场合,出行…

OpenCV 资料

OpenCV C#库, 选择 OpenCVSharp 库 OpenCV 教程 (1) OpenCVSharp 读取摄像头 https://www.bilibili.com/video/BV1xP411t7z8/ , https://www.bilibili.com/read/cv24922189 (2) OpenCVSharp 入门教程 https://juejin.cn/column/6984609912659640350 (3) B 站贾志刚的一系列Ope…

面试官:给你40亿个数,你应该如何快速判断一个数是否在这40亿个数中?—— 位图 [ C++入门 ]

阅读导航 引言一、位图的概念1. 官方文档2. 基本概念 二、位图的实现1. 插入2. 删除3. 查找C模拟实现🔴完整代码 总结 引言 在C编程中,位图是一种常用的数据结构,用于高效地表示大量的布尔值。它通过使用一个二进制位来表示每个元素的存在与…