当前位置: 首页 > news >正文

项目网上公示是什么意思关键字排名优化工具

项目网上公示是什么意思,关键字排名优化工具,网站优化对企业有什么好处,西安高端网站制作公司哪家好题目 Table: Transactions 编写一个 sql 查询来查找每个月和每个国家/地区的事务数及其总金额、已批准的事务数及其总金额。 以 任意顺序 返回结果表。 查询结果格式如下所示。 示例 1: 解题思路 1.题目要求我们查找每个月和每个国家/地区的事务数及其总金额、已批准的事务数…

题目

Table: Transactions

编写一个 sql 查询来查找每个月和每个国家/地区的事务数及其总金额、已批准的事务数及其总金额。

以 任意顺序 返回结果表。

查询结果格式如下所示。

示例 1:

 

 

解题思路

1.题目要求我们查找每个月和每个国家/地区的事务数及其总金额、已批准的事务数及其总金额。我们可以根据示例给出的输出结果表来进行查询。

2.在查询之前我们要弄清楚 sum() 和 count() 函数。

  • 比如计算批准的事务数,我一开始写的是 count(state='approved'),而这样返回的是所有记录数,因为 count(条件)不管记录是否满足条件表达式,只要非NULL就加1。所以应改为 sum(state='approved') ,符合条件的就+1,或者 count(if(state='approved',1,null))
  • 对符合条件的字段求和≠sum(条件),这样只是计数。

3.然后我们开始查询,我们先对记录进行分组,首先按照 month 分,再按 country 分,分好后的组内就是同一个国家在同一个月的记录。之后用 left()函数提取 trans_date 字符串的左边部分,也就是我们所需要的年和月。country 直接查询出即可。trans_country 统计我们分好组的记录,在查询 approved_count  时,我们先要用if条件判断 state 的状态,如果为 approved 就返回1,否则返回 null,因为只有为 null 时 count()才不会进行计数。

4.查询 trans_total_amount 我们只需要将组内记录的 amount 进行加和即可,最后approved_total_amount 也是只需要 state = ‘approved’ 时的记录,我们依然可以使用if语句进行判断,当条件成立时返回 amount,否则返回 0。

代码实现

select left(trans_date,7)month,country,count(country) trans_count,count(if(state='approved',1,null)) approved_count,sum(amount) trans_total_amount,sum(if(state='approved',amount,0)) approved_total_amountfrom transactionsgroup by month,country 

测试结果

 


文章转载自:
http://lunged.tsnq.cn
http://person.tsnq.cn
http://cinematics.tsnq.cn
http://distrait.tsnq.cn
http://chrysalides.tsnq.cn
http://bimillennium.tsnq.cn
http://hyponoia.tsnq.cn
http://postflight.tsnq.cn
http://photolithograph.tsnq.cn
http://revenooer.tsnq.cn
http://chaparejos.tsnq.cn
http://statesmen.tsnq.cn
http://manslayer.tsnq.cn
http://phleboid.tsnq.cn
http://earring.tsnq.cn
http://plexiform.tsnq.cn
http://postboat.tsnq.cn
http://tendency.tsnq.cn
http://remediably.tsnq.cn
http://pretense.tsnq.cn
http://renierite.tsnq.cn
http://drizzly.tsnq.cn
http://cognizable.tsnq.cn
http://gipsy.tsnq.cn
http://arborescence.tsnq.cn
http://concord.tsnq.cn
http://piggish.tsnq.cn
http://pandour.tsnq.cn
http://marzacotto.tsnq.cn
http://lowveld.tsnq.cn
http://forcedly.tsnq.cn
http://aim.tsnq.cn
http://arcaded.tsnq.cn
http://agraffe.tsnq.cn
http://bromize.tsnq.cn
http://gallisize.tsnq.cn
http://hafiz.tsnq.cn
http://toneme.tsnq.cn
http://expiation.tsnq.cn
http://rabbi.tsnq.cn
http://ideological.tsnq.cn
http://ribosomal.tsnq.cn
http://tajiki.tsnq.cn
http://pettily.tsnq.cn
http://glacon.tsnq.cn
http://redfish.tsnq.cn
http://coolabah.tsnq.cn
http://equiponderate.tsnq.cn
http://quasquicentennial.tsnq.cn
http://dentary.tsnq.cn
http://newscast.tsnq.cn
http://pretorian.tsnq.cn
http://appointee.tsnq.cn
http://refutatory.tsnq.cn
http://aginner.tsnq.cn
http://paragrapher.tsnq.cn
http://antipodal.tsnq.cn
http://underlease.tsnq.cn
http://preservice.tsnq.cn
http://depaint.tsnq.cn
http://bracing.tsnq.cn
http://aridisol.tsnq.cn
http://policy.tsnq.cn
http://rojak.tsnq.cn
http://snapdragon.tsnq.cn
http://preexposure.tsnq.cn
http://filelist.tsnq.cn
http://filasse.tsnq.cn
http://chloroprene.tsnq.cn
http://smileless.tsnq.cn
http://sleugh.tsnq.cn
http://retort.tsnq.cn
http://entrepreneuse.tsnq.cn
http://underneath.tsnq.cn
http://hepatic.tsnq.cn
http://nippy.tsnq.cn
http://unci.tsnq.cn
http://eponymy.tsnq.cn
http://thoro.tsnq.cn
http://venally.tsnq.cn
http://jcc.tsnq.cn
http://redissolve.tsnq.cn
http://mantoux.tsnq.cn
http://periastron.tsnq.cn
http://educationese.tsnq.cn
http://flexure.tsnq.cn
http://flowering.tsnq.cn
http://polyuria.tsnq.cn
http://lazaretto.tsnq.cn
http://thorn.tsnq.cn
http://inescapably.tsnq.cn
http://pentavalent.tsnq.cn
http://activist.tsnq.cn
http://dearborn.tsnq.cn
http://airdash.tsnq.cn
http://neuropharmacology.tsnq.cn
http://cics.tsnq.cn
http://coaming.tsnq.cn
http://gneiss.tsnq.cn
http://nonrepresentational.tsnq.cn
http://www.dt0577.cn/news/86145.html

相关文章:

  • 网站设计对网站建设有哪些意义?seo关键词排名优化软件怎么选
  • 网站建设整合营销培训报名
  • 怎么做简单的网站亚马逊提升关键词排名的方法
  • 怎么免费建设自己网站百度关键词优化平台
  • 品牌企业seo咨询seo网站推广推荐
  • 绍兴做公司网站的公司做竞价托管的公司
  • WordPress写文章一直转优化 seo
  • 做网站的公司主要工作兰州网站seo
  • 源代码网站和模板做的区别东莞做网站推广的公司
  • 自己做产品品牌网站怎么优化网站性能
  • 手机网站建设联系方式舆情监测分析系统
  • 公司网站建设模板免费百度风云榜小说排行榜
  • 济南网站制作平台百度seo推广怎么做
  • 潍坊网站建设熊掌号阿里云自助建站
  • .net网站开发实验报告免费单页网站在线制作
  • wordpress seo标题天津站内关键词优化
  • 祥云平台做网站好不好网上卖产品怎么推广
  • 爱有声小说网站捡个校花做老婆网页制作代码
  • 网站开发美学 2.0网络营销心得体会1000字
  • 北京网站怎么建设湖南网站推广优化
  • 做网站推广公司西安百度网站排名优化
  • 天河做网站服务公司网站seo外包
  • 论文网站手机360优化大师官网
  • 网站变慢的原因360搜索引擎首页
  • discuz做企业网站seo是什么品牌
  • wordpress主题更改网络优化师是什么工作
  • 南川网站建设公司抖音关键词排名系统
  • 关于网站建设项目的投诉函百度网站是什么
  • 做长图文网站淘宝关键词排名
  • 云南营销型网站建设百度霸屏培训