question_id int64 1 75.7k | db_id stringclasses 33
values | db_name stringclasses 4
values | question stringlengths 19 259 | partition stringclasses 4
values | difficulty stringclasses 3
values | SQL stringlengths 25 862 |
|---|---|---|---|---|---|---|
2,001 | ccks_stock | bull | Help me find the names of all companies in the textile industry. | train | easy | SELECT chiname FROM lc_business WHERE industryname LIKE '%textile%' |
2,002 | ccks_stock | bull | List the shareholders, number of shares held by each shareholder, and the percentage of shares held by each shareholder for 300184 in the previous year. | train | medium | SELECT shname, holdingsum, holdingpct FROM lc_relatedsh WHERE secucode = '300184' AND STRFTIME('%y', enddate) = STRFTIME('%y', DATE('now', '-2 year')) |
2,003 | ccks_fund | bull | How many funds with the fund category "Principal Guaranteed" have a risk rating of "Medium"?
| train | hard | SELECT COUNT(*) FROM mf_fundrisklevel AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.risklevel = 'medium' AND b.fundtype = 'principal guaranteed' |
2,004 | ccks_fund | bull | Which fund managers have the highest education level of 'Post-doctorate'? What is the scale of the equity funds they respectively manage? | train | hard | SELECT b.chinesename, b.equityfundnv FROM mf_personalinfo AS a JOIN mf_fmscaleanalysisn AS b ON a.personalcode = b.personalcode WHERE a.education = 'post-doctorate' |
2,005 | ccks_stock | bull | List the company abbreviations and names of the frozen pledged shareholders for companies in the secondary industry of "Software and Information Technology Services Industry", displayed in descending order of the cumulative proportion of total share capital. | train | hard | SELECT a.chinameabbr, a.fpshname FROM lc_sharefpsta AS a JOIN lc_exgindustry AS b ON a.companycode = b.companycode WHERE b.secondindustryname = 'software and information technology services industry' ORDER BY a.accuproportion DESC |
2,006 | ccks_stock | bull | Recently I heard that the pharmaceutical and biotech sector has been active in trading. I want to know the main business scope - main business of Nanhua Biotech. | train | easy | SELECT businessmajor FROM lc_business AS lb WHERE chinameabbr = 'nanhua biotech' |
2,007 | ccks_stock | bull | List the names of the top 10 companies with the highest stock repurchase amount in 2020 and their stock names. | train | easy | SELECT chiname, chinameabbr FROM lc_buyback WHERE STRFTIME('%y', advancedate) = '2020' ORDER BY buybackmoney DESC LIMIT 10 |
2,008 | ccks_fund | bull | Filter out all funds with the fund type of "Monetary" and sort them in descending order based on the annualized return rate since inception. | train | hard | SELECT b.secuabbr FROM mf_netvalueperformancehis AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE b.fundtype = 'monetary' ORDER BY a.annualizedrrsincestart DESC |
2,009 | ccks_fund | bull | List the abbreviated names and establishment dates of fund managers established after 2018. | train | easy | SELECT investadvisorabbrname, establishmentdate FROM mf_investadvisoroutline WHERE STRFTIME('%y', establishmentdate) > '2018' |
2,010 | ccks_stock | bull | I want to buy 000752, please help me check the gross profit margin for the past three years. | train | medium | SELECT grossprofit FROM lc_mainoperincome WHERE STRFTIME('%y', enddate) > STRFTIME('%y', DATE('now', '-3 year')) AND secucode = '000752' |
2,011 | ccks_fund | bull | Funds with negative benchmark growth rate since this week | train | medium | SELECT secuabbr FROM mf_benchmarkgrowthrate WHERE benchgrforthisweek < 0 |
2,012 | ccks_fund | bull | Which fund manager manages the most value-oriented funds? | train | medium | SELECT investadvisorname FROM mf_fundarchives WHERE investmenttype = 'value-oriented' GROUP BY investadvisorname ORDER BY COUNT(*) DESC LIMIT 1 |
2,013 | ccks_stock | bull | Display the names of companies with stock codes starting with 300, the number of shares held before transfer, and the shareholding ratio. | train | easy | SELECT chinameabbr, sumbeforetran, pctbeforetran FROM lc_sharetransfer WHERE secucode LIKE '300%' |
2,014 | ccks_stock | bull | List the company code of the company with the largest proportion of newly added tradable A shares in the previous period. | train | hard | SELECT secucode FROM lc_sharesfloatingschedule ORDER BY proportion1 DESC LIMIT 1 |
2,015 | ccks_fund | bull | SIRI, filter the fund products, with a return rate of more than 5% in the past month and a return rate of more than 3% in the past week. | train | medium | SELECT secuabbr FROM mf_netvalueperformancehis WHERE rrinsinglemonth > 5 AND rrinsingleweek > 3 |
2,016 | ccks_stock | bull | How many companies had business expenses exceeding 100,000,000 in 2018? | train | medium | SELECT COUNT(*) FROM lc_mainoperincome WHERE STRFTIME('%y', enddate) = '2018' AND mainopercost > 100000000 |
2,017 | ccks_fund | bull | List the funds that hold more than 50,000 bonds and their managers. | train | hard | SELECT b.secuabbr, b.manager FROM mf_bondportifoliodetail AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.holdvolume > 50000 |
2,018 | ccks_stock | bull | Companies with more than 300 R&D personnel | train | easy | SELECT chinameabbr FROM lc_intassetsdetail WHERE rdstaffnum > 300 |
2,019 | ccks_fund | bull | What is the number of funds corresponding to the grouping statistics of "ETF" funds according to the fund risk level? | train | hard | SELECT b.risklevel, COUNT(b.secuabbr) FROM mf_fundarchives AS a JOIN mf_fundrisklevel AS b ON a.innercode = b.innercode WHERE a.type = 'etf' GROUP BY b.risklevel |
2,020 | ccks_fund | bull | What is the benchmark growth rate of ChinaAMC ETF for governance fund since this month? | train | medium | SELECT benchgrforthismonth FROM mf_benchmarkgrowthrate WHERE secuabbr = 'chinaamc etf for governance' |
2,021 | ccks_stock | bull | Which companies in Zhejiang Province had an R&D investment-to-revenue ratio greater than 10% last year? | train | hard | SELECT a.chinameabbr FROM lc_intassetsdetail AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE STRFTIME('%y', a.enddate) = STRFTIME('%y', DATE('now', '-1 year')) AND b.state = 'zhejiang province' AND a.rdinputratio > 10 |
2,022 | ccks_stock | bull | What is the company website address of Vanke? | train | easy | SELECT website FROM lc_stockarchives WHERE chinameabbr = 'vanke' |
2,023 | ccks_stock | bull | Which shareholders participated in the allotment of 002466? | train | easy | SELECT shname FROM lc_largeshsubscription WHERE secucode = '002466' |
2,024 | ccks_fund | bull | Who are the legal representative and general manager of Minsheng-Jiayin Fund? | train | medium | SELECT legalrepr, generalmanager FROM mf_investadvisoroutline WHERE investadvisorabbrname = 'minsheng-jiayin fund' |
2,025 | ccks_fund | bull | Which managers have had negative benchmark growth rates for this week? | train | hard | SELECT b.manager FROM mf_benchmarkgrowthrate AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.benchgrforthisweek < 0 |
2,026 | ccks_fund | bull | The names and highest education of fund managers whose average yield of the same category is greater than 0. | train | hard | SELECT a.chinesename, b.education FROM mf_fmretandscalerank AS a JOIN mf_personalinfo AS b ON a.personalcode = b.personalcode WHERE a.returntypeavg > 0 |
2,027 | ccks_stock | bull | Since last year, what are the major shareholders and the percentage of shareholdings in Nantian Information? | train | medium | SELECT shname, holdingpct FROM lc_relatedsh WHERE chinameabbr = 'nantian information' AND STRFTIME('%y', enddate) >= STRFTIME('%y', DATE('now', '-1 year')) |
2,028 | ccks_fund | bull | Show the number of funds with positive returns for the index cycle "one month", grouped by fund operating form. | train | hard | SELECT b.type, COUNT(*) FROM mf_fundreturnrank AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.indexcycle = 'one month' AND a.fundreturn > 0 GROUP BY b.type |
2,029 | ccks_stock | bull | List the names and abbreviations of the institutions involved in the issuance of Dong-E-E-Jiao stocks, as well as the name of the major shareholder in the rights issue. | train | hard | SELECT a.fullname, a.abbrname, b.shname FROM lc_issueandlistagent AS a JOIN lc_largeshsubscription AS b ON a.companycode = b.companycode WHERE a.chinameabbr = 'dong-e-e-jiao' |
2,030 | ccks_stock | bull | Companies in the first quarter of 2020 with an average shareholder holding proportion exceeding 5% | train | medium | SELECT chinameabbr FROM lc_shnumber WHERE STRFTIME('%y', enddate) = '2020' AND ROUND(CAST(STRFTIME('%m', enddate) AS REAL) / 3.0 + 0.495) = 1 AND holdproportionpaccount > 5 |
2,031 | ccks_stock | bull | What are the historical highest P/E ratio and P/B ratio for stock 600352? | train | easy | SELECT MAX(pb), MAX(pettm) FROM qt_monthdata WHERE secucode = '600352' |
2,032 | ccks_fund | bull | The names and tenure of fund managers currently managing funds with the investment type "Growth - Small and Medium-sized Enterprise Growth"
| train | hard | SELECT a.name, a.managementtime FROM mf_fundmanagernew AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE b.investmenttype = 'growth - small and medium-sized enterprise growth' |
2,033 | ccks_stock | bull | Who was the major shareholder of 300184 in the fourth quarter of last year? | train | medium | SELECT shname FROM lc_relatedsh WHERE secucode = '300184' AND STRFTIME('%y', enddate) = STRFTIME('%y', DATE('now', '-1 year')) AND ROUND(CAST(STRFTIME('%m', enddate) AS REAL) / 3.0 + 0.495) = 4 |
2,034 | ccks_fund | bull | How many funds have a risk level of "Medium"? | train | easy | SELECT COUNT(*) FROM mf_fundrisklevel WHERE risklevel = 'medium' |
2,035 | ccks_stock | bull | What is the number of newly added salable A-shares and the proportion of newly added salable A-shares to the previous quarter's circulating A-shares for Jiuqi Software? | train | easy | SELECT newmarketableashares, proportion1 FROM lc_sharesfloatingschedule WHERE chinameabbr = 'jiuqi software' |
2,036 | ccks_stock | bull | List all abbreviations of listed companies starting with "300" and their corresponding actual controllers. | train | easy | SELECT chinameabbr, controllername FROM lc_actualcontroller WHERE secucode LIKE '300%' |
2,037 | ccks_stock | bull | Display the monthly total capital, price-to-book ratio, and PE information of 000935. | train | easy | SELECT totalshare, pb, pettm FROM qt_monthdata WHERE secucode = '000935' |
2,038 | ccks_stock | bull | Display the number of shares held before the transfer and the proportion of shares held before the transfer for 300707. | train | easy | SELECT sumbeforetran, pctbeforetran FROM lc_sharetransfer WHERE secucode = '300707' |
2,039 | ccks_stock | bull | How many companies have a free float ratio of 100%, grouped by primary industry? | train | hard | SELECT a.firstindustryname, COUNT(*) FROM lc_exgindustry AS a JOIN lc_freefloat AS b ON a.companycode = b.companycode WHERE b.adjfreefloatratio = 100 GROUP BY a.firstindustryname |
2,040 | ccks_fund | bull | Display the abbreviation of fund management companies with registered capital exceeding 10 billion and their corresponding registration locations, registered capital. | train | easy | SELECT investadvisorabbrname, regaddr, regcapital FROM mf_investadvisoroutline WHERE regcapital > 10000000000 |
2,041 | ccks_stock | bull | What is the daily trading volume and turnover amount of Caesar Culture's stock? | train | easy | SELECT turnovervolume, turnovervalue FROM qt_dailyquote WHERE chinameabbr = 'caesar culture' |
2,042 | ccks_fund | bull | Who are the presidents of Rongtong Fund and Huatai-PineBridge Fund? | train | medium | SELECT investadvisorabbrname, generalmanager FROM mf_investadvisoroutline WHERE investadvisorabbrname = 'rongtong fund' OR investadvisorabbrname = 'huatai-pinebridge fund' |
2,043 | ccks_fund | bull | What are the indicator periods and fund returns of China AMC Blue Chip ETF and CCB Shenzhen Securities 60 ETF respectively? | train | medium | SELECT secuabbr, indexcycle, fundreturn FROM mf_fundreturnrank WHERE secuabbr = 'china amc blue chip etff' OR secuabbr = 'ccb shenzhen securities 60 etf' |
2,044 | ccks_fund | bull | What is the distribution of average total fund size among fund managers with different highest education levels? | train | hard | SELECT a.education, AVG(b.totalfundnv) FROM mf_personalinfo AS a JOIN mf_fmscaleanalysisn AS b ON a.personalcode = b.personalcode GROUP BY a.education |
2,045 | ccks_fund | bull | List all fund managers with a PhD as their highest educational level, along with the number of funds they manage and the total scale of those funds. | train | hard | SELECT b.chinesename, b.numberoffunds, b.totalfundnv FROM mf_personalinfo AS a JOIN mf_fmscaleanalysisn AS b ON a.personalcode = b.personalcode WHERE a.education = 'phd' |
2,046 | ccks_stock | bull | Who is the controlling shareholder of 000590? | train | easy | SELECT controllername FROM lc_actualcontroller WHERE secucode = '000590' |
2,047 | ccks_fund | bull | Find the number of bond funds managed by fund managers that exceeds 3 and their birthdate information. | train | hard | SELECT b.chinesename, b.birthdate FROM mf_fmscaleanalysisn AS a JOIN mf_personalinfo AS b ON a.personalcode = b.personalcode WHERE a.bondfundn > 3 |
2,048 | ccks_stock | bull | List the per capita shareholding and the proportion of per capita shareholding information for BeiGene. | train | easy | SELECT averageholdsum, holdproportionpaccount FROM lc_shnumber WHERE chinameabbr = 'beigene' |
2,049 | ccks_fund | bull | Please check which funds have a positive 5-year benchmark growth rate. | train | medium | SELECT secuabbr FROM mf_benchmarkgrowthrate WHERE benchgrfor5year > 0 |
2,050 | ccks_fund | bull | List the managers and fund types with benchmark growth rate exceeding 5% in a month. | train | hard | SELECT b.manager, b.fundtype FROM mf_benchmarkgrowthrate AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.monthlybenchgr > 5 |
2,051 | ccks_fund | bull | Provide information on the benchmark growth rate of China-Europe New Trend A Fund since the beginning of this week. | train | easy | SELECT benchgrforthisweek FROM mf_benchmarkgrowthrate WHERE secuabbr = 'china-europe new trend a' |
2,052 | ccks_fund | bull | List the funds that rank in the bottom 10 in terms of benchmark growth rate for this year. | train | hard | SELECT secuabbr FROM mf_benchmarkgrowthrate ORDER BY benchgrforthisyear LIMIT 10 |
2,053 | ccks_fund | bull | Are there any funds holding Hangyin Convertible Bonds? Who is the manager? | train | hard | SELECT b.secuabbr, b.manager FROM mf_bondportifoliodetail AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.bondabbr = 'hangyin convertible bonds' |
2,054 | ccks_stock | bull | Which shareholders of 600743 have an allocation of more than 2 million shares in their name? | train | medium | SELECT shname FROM lc_largeshsubscription WHERE secucode = '600743' AND oughtshares > 2000000 |
2,055 | ccks_stock | bull | Daily trading volume and turnover data of Ruifeng New Materials. | train | easy | SELECT turnovervolume, turnovervalue FROM qt_dailyquote WHERE chinameabbr = 'ruifeng new materials' |
2,056 | ccks_fund | bull | Are there any funds with bond market values exceeding 50 million? Find the corresponding fund manager and their percentage of net assets. | train | hard | SELECT b.secuabbr, b.manager, a.ratioinnv FROM mf_bondportifoliodetail AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.marketvalue > 50000000 |
2,057 | ccks_stock | bull | Which shareholders are included in the allocation of 000659? | train | easy | SELECT shname FROM lc_largeshsubscription WHERE secucode = '000659' |
2,058 | ccks_stock | bull | I heard that many companies have performed well recently. Help me query the codes of listed companies with a profit contribution rate exceeding 1. | train | easy | SELECT secucode FROM lc_mainoperincome WHERE grossprofit > 1 |
2,059 | ccks_stock | bull | How many companies does Gu Yu hold stocks in? Please help me to count the companies where his shareholder's investment exceeds 1 million. | train | medium | SELECT secucode FROM lc_relatedsh WHERE shname = 'gu yu' AND shinvestsum > 1000000 |
2,060 | ccks_stock | bull | Tell me the companies in the secondary industry "News and Publishing" along with their CEO and legal representative. | train | hard | SELECT a.chinameabbr, b.generalmanager, b.legalrepr FROM lc_exgindustry AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE a.secondindustryname = 'news and publishing' |
2,061 | ccks_fund | bull | List the funds with the lowest 10 benchmark growth rate rankings since the beginning of this year. | train | hard | SELECT secuabbr FROM mf_benchmarkgrowthrate ORDER BY benchgrforthisyear LIMIT 10 |
2,062 | ccks_stock | bull | What were the proportion of bonus shares and the amount of cash dividends for my holding 000752 last year? | train | medium | SELECT bonusshareratio, cashdivirmb FROM lc_dividend WHERE secucode = '000752' AND STRFTIME('%y', dividendimplementdate) = STRFTIME('%y', DATE('now', '-1 year')) |
2,063 | ccks_stock | bull | Please tell me the names of the top 5 actual controllers of listed holding companies. | train | hard | SELECT controllername FROM lc_actualcontroller GROUP BY controllername ORDER BY COUNT(*) DESC LIMIT 5 |
2,064 | ccks_stock | bull | Which companies in Zhejiang province had research and development expenditures exceeding 300 million last year? | train | hard | SELECT a.chinameabbr FROM lc_intassetsdetail AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE STRFTIME('%y', a.enddate) = STRFTIME('%y', DATE('now', '-1 year')) AND a.totalrdinput > 300000000 AND b.state = 'zhejiang province' |
2,065 | ccks_stock | bull | List the statistical maximum and minimum turnover values for each stock on a daily basis. | train | hard | SELECT chinameabbr, MAX(turnovervalue), MIN(turnovervalue) FROM qt_dailyquote GROUP BY chinameabbr |
2,066 | ccks_stock | bull | How many companies in Zhejiang Province have a research and development staff of over 300 people? | train | easy | SELECT chinameabbr FROM lc_intassetsdetail WHERE rdstaffnum > 300 |
2,067 | ccks_fund | bull | The name of the fund manager for funds with operating form as ETF and securities code starting with 15. | train | hard | SELECT a.name FROM mf_fundmanagernew AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE b.type = 'etf' AND a.secucode LIKE '15%' |
2,068 | ccks_fund | bull | Find out which funds have heavy holdings in bonds with a market value exceeding 20 million, along with the manager and the proportion. | train | hard | SELECT b.secuabbr, b.manager, a.ratioinnv FROM mf_bondportifoliodetail AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.marketvalue > 20000000 |
2,069 | ccks_stock | bull | Which shareholders participated in the allotment of 600110 and how many shares did each of them actually receive? | train | easy | SELECT shname, actualshares FROM lc_largeshsubscription WHERE secucode = '600110' |
2,070 | ccks_stock | bull | What are the daily trading volume and trading value data of stock 601908 from 2020 to today? | train | medium | SELECT turnovervolume, turnovervalue FROM qt_dailyquote WHERE secucode = '601908' AND STRFTIME('%y', tradingday) >= '2020' |
2,071 | ccks_fund | bull | Count the quantity of fund managers by their highest education level and display them in descending order. | train | hard | SELECT education, COUNT(*) FROM mf_personalinfo GROUP BY education ORDER BY COUNT(*) DESC |
2,072 | ccks_fund | bull | Provide the top 10 funds with the highest number of bond holdings and their managers. | train | hard | SELECT b.secuabbr, b.manager FROM mf_bondportifoliodetail AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode ORDER BY a.holdvolume DESC LIMIT 10 |
2,073 | ccks_stock | bull | Please provide me with the full name and A-stock code of Shanghai Xinyang. | train | easy | SELECT chiname, astockcode FROM lc_stockarchives WHERE chinameabbr = 'shanghai xinyang' |
2,074 | ccks_stock | bull | List the names of equity transferors, the number of shares held after the transfer, and the shareholding status after the transfer for companies in Shenzhen City. | train | hard | SELECT a.transferername, a.sumaftertran, a.pctaftertran FROM lc_sharetransfer AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE b.city = 'shenzhen city' |
2,075 | ccks_stock | bull | What are the names of the companies in the financial industry whose circulating A-shares account for more than 20% of the total A-shares? | train | hard | SELECT a.chinameabbr FROM lc_sharesfloatingschedule AS a JOIN lc_exgindustry AS b ON a.companycode = b.companycode WHERE b.firstindustryname = 'financial industry' AND a.proportion2 > 20. |
2,076 | ccks_stock | bull | What are the stock codes of companies that have operating costs of less than 10 million in the past year? | train | medium | SELECT secucode FROM lc_mainoperincome WHERE STRFTIME('%y', enddate) > STRFTIME('%y', DATE('now', '-1 year')) AND mainopercost < 10000000 |
2,077 | ccks_fund | bull | What are the names of the funds with a risk rating of "Medium-Low" and their comparative benchmarks? | train | hard | SELECT a.secuabbr, a.performancebenchmark FROM mf_fundarchives AS a JOIN mf_fundrisklevel AS b ON a.innercode = b.innercode WHERE b.risklevel = 'medium-low' |
2,078 | ccks_fund | bull | What is the number of funds corresponding to the grouping statistics according to the fund risk level for funds with the nature of "Conventional Fund"? | train | hard | SELECT b.risklevel, COUNT(b.secuabbr) FROM mf_fundarchives AS a JOIN mf_fundrisklevel AS b ON a.innercode = b.innercode WHERE a.fundnature = 'conventional fund' GROUP BY b.risklevel |
2,079 | ccks_stock | bull | What are the code and company abbreviation of DeepTech? | train | easy | SELECT astockcode, ashareabbr FROM lc_stockarchives WHERE chinameabbr = 'deeptech' |
2,080 | ccks_stock | bull | What is the name of the company in the manufacturing industry with the highest proportion of newly added tradable A shares compared to the previous period's circulating A shares? | train | hard | SELECT a.chinameabbr FROM lc_sharesfloatingschedule AS a JOIN lc_exgindustry AS b ON a.companycode = b.companycode WHERE b.firstindustryname = 'manufacturing' ORDER BY a.proportion1 DESC LIMIT 1 |
2,081 | ccks_fund | bull | Which funds have had a positive benchmark annualized growth rate since establishment? | train | medium | SELECT secuabbr FROM mf_benchmarkgrowthrate WHERE annualizedbrforsince > 0 |
2,082 | ccks_fund | bull | Who are the top ten fund managers with the highest number of total managed funds? | train | hard | SELECT chinesename FROM mf_fmscaleanalysisn ORDER BY totalfundnrank LIMIT 10 |
2,083 | ccks_fund | bull | What is the full name of E Fund Double Innovation 50 ETF? | train | easy | SELECT chiname FROM mf_fundarchives WHERE secuabbr = 'e fund double innovation 50 etf' |
2,084 | ccks_stock | bull | What was the revenue and year-on-year growth rate of main operating income for 000822 in December 2017? | train | medium | SELECT mainoperincome, mainincomegrowrateyoy FROM lc_mainoperincome WHERE STRFTIME('%y', enddate) = '2017' AND STRFTIME('%m', enddate) = '12' AND secucode = '000822' |
2,085 | ccks_fund | bull | Find the manager and fund manager with the lowest total management scale. | train | hard | SELECT b.manager, b.investadvisorname FROM mf_fmscaleanalysisn AS a JOIN mf_fundarchives AS b ON a.chinesename = b.manager ORDER BY a.totalfundnv LIMIT 1 |
2,086 | ccks_stock | bull | Which companies in 2020 have interest expenses exceeding 1 billion? | train | medium | SELECT chinameabbr FROM lc_financialexpense WHERE interestexpense >= 1000000000 AND STRFTIME('%y', enddate) = '2020' |
2,087 | ccks_fund | bull | Which fund has the highest one-year benchmark growth rate? | train | hard | SELECT secuabbr FROM mf_benchmarkgrowthrate ORDER BY benchgrfor1year DESC LIMIT 1 |
2,088 | ccks_fund | bull | Which funds have a negative benchmark growth rate for this month and what is their investment scope? | train | hard | SELECT b.secuabbr, b.investfield FROM mf_benchmarkgrowthrate AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE a.benchgrforthismonth < 0 |
2,089 | ccks_stock | bull | The A-share stock code and stock abbreviation of iFLYTEK Co., Ltd. | train | easy | SELECT astockcode, ashareabbr FROM lc_stockarchives WHERE chinameabbr = 'iflytek co., ltd.' |
2,090 | ccks_stock | bull | Recently, the "Digital Currency" sector has become popular. Please list the stock names, legal representatives' names, and chairman's secretary names in this sector. | train | hard | SELECT a.secuabbr, b.legalrepr, b.secretarybd FROM lc_coconcept AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE a.conceptname = 'digital currency' |
2,091 | ccks_fund | bull | Which fund managers have the nationality 'Guernsey' and list their total fund assets under management and total QDII fund assets under management? | train | hard | SELECT b.chinesename, b.totalfundnv, b.qdiinv FROM mf_personalinfo AS a JOIN mf_fmscaleanalysisn AS b ON a.personalcode = b.personalcode WHERE a.nationality = 'guernsey' |
2,092 | ccks_stock | bull | List the names of the shareholders transferring equity, the number of shares held after the transfer, and the proportion of shares held after the transfer for Shengtian Network in 2018. | train | medium | SELECT transferername, sumaftertran, pctaftertran FROM lc_sharetransfer WHERE chinameabbr = 'shengtian network' AND STRFTIME('%y', trandate) = '2018' |
2,093 | ccks_fund | bull | Find out which manager manages the most number of capital protection funds, and who is the fund manager. | train | easy | SELECT manager, investadvisorname FROM mf_fundarchives WHERE fundtype = 'capital protection' GROUP BY manager ORDER BY COUNT(*) DESC LIMIT 1 |
2,094 | ccks_fund | bull | Return the fund names where the fund category is "Mixed Type" and the fund return is greater than 0. | train | hard | SELECT a.secuabbr FROM mf_fundreturnrank AS a JOIN mf_fundarchives AS b ON a.innercode = b.innercode WHERE b.fundtype = 'mixed type' AND a.fundreturn > 0 |
2,095 | ccks_stock | bull | List the company codes with negative year-on-year growth rate of operating income before 2019. | train | medium | SELECT secucode FROM lc_mainoperincome WHERE mainincomegrowrateyoy < 0 AND STRFTIME('%y', enddate) < '2019' |
2,096 | ccks_stock | bull | Which companies in Zhejiang Province had total R&D expenses exceeding 300 million in 2019? | train | hard | SELECT a.chinameabbr FROM lc_intassetsdetail AS a JOIN lc_stockarchives AS b ON a.companycode = b.companycode WHERE STRFTIME('%y', a.enddate) = '2019' AND a.totalrdinput > 300000000 AND b.state = 'zhejiang province' |
2,097 | ccks_fund | bull | Wang wants to know the weekly growth rate of our fund's net asset value per share. Please check and remember to include the fund code. | train | easy | SELECT secucode, nvweeklygrowthrate FROM mf_netvalue |
2,098 | ccks_stock | bull | Where is the corporate office of Jinko Solar located? | train | easy | SELECT officeaddr FROM lc_stockarchives WHERE chinameabbr = 'jinko solar' |
2,099 | ccks_stock | bull | What is the shareholding proportion of major shareholders and shareholder names in Liyuan Information? Please help me check. | train | medium | SELECT shname, holdingsum FROM lc_relatedsh WHERE chinameabbr = 'liyuan information' |
2,100 | ccks_stock | bull | What is the name of the shareholder who has the highest actual allotment of shares in 000040? | train | easy | SELECT shname FROM lc_largeshsubscription WHERE secucode = '000040' ORDER BY actualshares DESC LIMIT 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.