本文介绍了在PostgreSQL中打印变量的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个postgresql函数

I have a postgresql function

CREATE OR REPLACE FUNCTION fixMissingFiles() RETURNS VOID AS $$
DECLARE
    deletedContactId integer;
    BEGIN
            SELECT INTO deletedContactId contact_id FROM myContacts WHERE id=206351;

            -- print the value of deletedContactId variable to the console

    END;
$$ LANGUAGE plpgsql;

如何在控制台上打印出DeletedContactId的值?

How can I print the value of the deletedContactId to the console?

推荐答案

您可以在 Postgres 中发出如下通知:

You can raise a notice in Postgres as follows:

raise notice 'Value: %', deletedContactId;

阅读

这篇关于在PostgreSQL中打印变量的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 08:54