PostgreSQL 일일 게시 --PL/pgSQL 저장 프로세스 예
1442 단어 데이터베이스PostgreSQL
--1. psql RAISE NOTICE
--2. perform function_name(...)
--3.
--4.
--5.
drop table if exists test_table;
CREATE TABLE test_table(start_time timestamp, end_time timestamp, str_flag varchar(200));
CREATE OR REPLACE FUNCTION test_function() RETURNS double precision AS $$
DECLARE
start_time timestamp;
end_time timestamp;
time_consuming double precision;
BEGIN
time_consuming := -1;
select clock_timestamp() into start_time;
RAISE NOTICE 'Quantity here is %', start_time;
perform pg_sleep(3);
select clock_timestamp() into end_time;
RAISE NOTICE 'Quantity here is %', end_time;
select round(EXTRACT(EPOCH from end_time)-EXTRACT(EPOCH from start_time)) into time_consuming;
insert into test_table values(start_time, end_time, 'TEST_CLOCK_TIMESTAMP');
return time_consuming;
END;
$$ LANGUAGE plpgsql;
테스트 결과
postgres=> select * from test_function(); NOTICE: Quantity here is 2015-01-24 20:38:50.38032 NOTICE: Quantity here is 2015-01-24 20:38:53.384296 test_function --------------- 3 (1 row) postgres=> select * from test_table; start_time | end_time | str_flag ---------------------------+----------------------------+---------------------- 2015-01-24 20:38:50.38032 | 2015-01-24 20:38:53.384296 | TEST_CLOCK_TIMESTAMP (1 row) postgres=>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
SQLite의 query로 망설임이것은 내가 처음 안드로이드 응용 프로그램 개발에서 망설이고, 그 후 해결 된 방법을 비망록으로 철자하고 있습니다. java에서 SQLite를 이용한 애플리케이션을 작성하는 동안 EditText에 입력된 item이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.