SQL SUM 函式 返回數值列的總數

2022-08-02 16:27:16 字數 1008 閱讀 2849

sum() 函式返回數值列的總數。

select sum(column_name) from table_name;

在本教程中,我們將使用 樣本資料庫。

下面是選自 "access_log" 表的資料:

mysql> select * from access_log;

+-----+---------+-------+------------+

| aid | site_id | count | date |

+-----+---------+-------+------------+

| 1 | 1 | 45 | 2016-05-10 |

| 2 | 3 | 100 | 2016-05-13 |

| 3 | 1 | 230 | 2016-05-14 |

| 4 | 2 | 10 | 2016-05-14 |

| 5 | 5 | 205 | 2016-05-14 |

| 6 | 4 | 13 | 2016-05-15 |

| 7 | 3 | 220 | 2016-05-15 |

| 8 | 5 | 545 | 2016-05-16 |

| 9 | 3 | 201 | 2016-05-17 |

+-----+---------+-------+------------+

9 rows in set (0.00 sec)

下面的 sql 語句查詢 "access_log" 表的 "count" 欄位的總數:

select sum(count) as nums from access_log;

執行以上 sql 輸出結果如下:

ADO 裡面如何獲得 SQL sum 函式返回的值

question ado 裡面怎麼獲得 sql sum 函式返回的值 define query t select count from test where machinename test g rst open variant t query g conn.getinte ceptr adopen...

python 返回多個函式值

python 函式返回值有兩種形式 1 返回乙個值。2 返回多個值。現看看返回乙個值的吧。deffirstvalue a,b c a b return cprint firstvalue 1,2 結果 3 再看看返回多個值的 那怎麼可以返回多個值呢,其他的語言一般呼叫函式的話,只能返回乙個值,可能我...

c 函式未返回函式值

test0 include include using namespace std int add int a,int b int main int argc,char ar int main int argc,char ar int main int argc,char ar int main i...