List the factorial methods implemented by PostgreSQL.

Source: Internet
Author: User

List the factorial methods implemented by PostgreSQL.
PostgreSQL has a huge number of features and there are many ways to implement multiplication. Today I will briefly list the following convenient ways.

For example, we want to calculate 10!


1. You can use SQL to expand it:
t_girl=# select 1*2*3*4*5*6*7*8*9*10 as mutiply_10;     mutiply_10 ------------    3628800(1 row)Time: 0.854 ms




2. recursion
t_girl=# with recursive g(m,n) as t_girl-# (select 1 m, 10 nt_girl(# union allt_girl(# select m*n, (n-1) n from g where n > 1t_girl(# )t_girl-# select max(m) as factorial_10 from g; factorial_10 --------------      3628800(1 row)Time: 3.893 ms




3. Use simple functions to expand
create or replace function func_get_factorial(f_number int)  returns bigint as $ytt$  declare i int :=1;  declare v_result bigint := 1;begin  for i in 1 .. f_number loop    v_result := v_result * i;  end loop;  return v_result;end;$ytt$ language plpgsql;t_girl=# select func_get_factorial(10) as factorial_10; factorial_10 --------------      3628800(1 row)Time: 1.022 ms




4. Use the cursor and the sequence function generate_series to expand
create or replace function func_get_factorial2(f_number int)  returns bigint as $ytt$  declare cs1 cursor for select n from generate_series(1,f_number,1) as g(n);  declare v_result bigint := 1;  declare v_n bigint := 0;begin    open cs1;    loop        fetch cs1 into v_n;        exit when not found;v_result := v_result * v_n;    end loop;    close cs1;  return v_result;end;$ytt$ language plpgsql;t_girl=# select func_get_factorial2(10) factorial_10; factorial_10 --------------      3628800(1 row)Time: 2.238 mst_girl=# 





5. Use custom python Functions

create or replace function func_get_factorial_py(f_number int)  returns bigint as $ytt$m = 1n = 1for i in range(1,f_number+1):    m = m * in = mreturn n$ytt$ language plpythonu;t_girl=# select func_get_factorial_py(10) factorial_10; factorial_10 --------------      3628800(1 row)Time: 1.060 ms




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.