sql script function to write postgresql database to implement parsing

sql script function to write postgresql database to implement parsing

This article mainly introduces the sql script function to write postgresql database to implement parsing. The example code in the article is very detailed and has a certain reference value for everyone's study or work. Friends in need can refer to it.

postgresql creates a Long auto-increment function

CREATE SEQUENCE global_id_sequence;

CREATE OR REPLACE FUNCTION seq_id(OUT result bigint) AS $$
DECLARE
  our_epoch bigint := 1314220021721;
  seq_id bigint;
  now_millis bigint;
  -- the id of this DB shard, must be set for each
  -- schema shard you have - you could pass this as a parameter too
  shard_id int := 1;
BEGIN
  SELECT nextval('global_id_sequence') % 1024 INTO seq_id;

  SELECT FLOOR(EXTRACT(EPOCH FROM clock_timestamp()) * 1000) INTO now_millis;
  result := (now_millis - our_epoch) << 23;
  result := result | (shard_id << 10);
  result := result | (seq_id);
END;
$$LANGUAGE PLPGSQL;

<!--alter function seq_id(out bigint) owner to postgres;-->

Create sql script postgresql

do language plpgsql
$$
begin
update grade set grade = 90 where sno = '20161003';
end
$$

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Syntax and usage of window functions in PostgreSQL database
  • Example of implementing function calculation method in PostgreSQL Node.js
  • Summary of common functions of PostgreSQL regular expressions
  • In-depth analysis of the usage of sequences and related functions in PostgreSQL
  • Detailed explanation of Postgresql custom functions

<<:  Solution to blank page after Vue packaging

>>:  Use of Linux cal command

Recommend

CSS to achieve glowing text and a little bit of JS special effects

Implementation ideas: Use text-shadow in CSS to a...

CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions

1. Introduction This article does not have screen...

Example of using UserMap in IMG

usemap is an attribute of the <img> tag, use...

How to set static IP in CentOS7 on VirtualBox6 and what to note

Install CentOS 7 after installing VirtualBox. I w...

Solution to mysql error when modifying sql_mode

Table of contents A murder caused by ERR 1067 The...

Code analysis of synchronous and asynchronous setState issues in React

React originated as an internal project at Facebo...

Binary installation of mysql 5.7.23 under CentOS7

The installation information on the Internet is u...

Detailed explanation of common methods of Vue development

Table of contents $nextTick() $forceUpdate() $set...

URL representation in HTML web pages

In HTML, common URLs are represented in a variety ...

The principle and basic use of Vue.use() in Vue

Table of contents Preface 1. Understanding with e...

mysql security management details

Table of contents 1. Introduce according to the o...

jQuery plugin to implement minesweeper game (2)

This article shares the second article of using j...

About 3 common packages of rem adaptation

Preface I wrote an article about rem adaptation b...