Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 231 Bytes

File metadata and controls

13 lines (10 loc) · 231 Bytes

Postgres helper

  • Temporary tables:
CREATE TEMPORARY TABLE tb_codes_temp (cd_code VARCHAR(5));

INSERT INTO tb_codes_temp (cd_code) 
VALUES 
	('12884'),
	('12893');

SELECT * FROM tb_codes_temp;