Skip to content

Instantly share code, notes, and snippets.

@ryuichimatsumoto-single
Last active April 9, 2016 00:23
Show Gist options
  • Save ryuichimatsumoto-single/b3c5db4ae7ddb7267cd84f61ec89d510 to your computer and use it in GitHub Desktop.
Save ryuichimatsumoto-single/b3c5db4ae7ddb7267cd84f61ec89d510 to your computer and use it in GitHub Desktop.
一度に平均、標準偏差を計算するSQL文
SELECT count(*),sum(column),avg(column),stddev(column),max(column),min(column) FROM table_name WHERE <statement>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment