SQL Statement to create a table as a result of a count operation?

守給你的承諾、 提交于 2019-12-23 03:47:22

问题


Let's say you got a table like this

id   terms    
1    a       
2    c       
3    a       
4    b       
5    b       
6    a       
7    a
8    b
9    b
10   b        

and you want to end up with a report like this;

terms  count
a      4
b      5
c      1

So you run this over the first table

SELECT terms, COUNT( id) AS count 
    FROM table 
GROUP BY terms 
ORDER BY terms DESC

So far so good.

But the above SQL statment puts the report view on the browser. Well, I want to save that data into a SQL.

So, what SQL command do I need to insert the results of that report into a table?

Assume that you already created a table called reports with this;

create table reports (terms varchar(500), count (int))

Let's assume that the reports table is empty and we just want to populate it with the following view - with a one-liner. The question I'm asking is how?

  terms  count
    a      4
    b      5
    c      1

回答1:


As simple as that:

INSERT INTO reports
SELECT terms, COUNT( id) AS count 
FROM table 
GROUP BY terms 
ORDER BY terms DESC



回答2:


if the table exists already:

Insert reports
SELECT terms, COUNT(*) AS count 
FROM table 
GROUP BY terms 

if not:

SELECT terms, COUNT(*) AS count 
into reports
FROM table 
GROUP BY terms


来源:https://stackoverflow.com/questions/10325352/sql-statement-to-create-a-table-as-a-result-of-a-count-operation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!