Use CREATE LANGUAGE to load the language into the database

postgre娄据库创建下面函数时:报标题上的错误

解决办法,直接SQL查询面板运行: CREATE LANGUAGE 'plpgsql'

 

CREATE OR REPLACE FUNCTION get_department_path_id(integer)
  RETURNS character AS
  $BODY$DECLARE

    v_pid ALIAS FOR $1;
    v_id integer;
    v_result varchar(100);
 
BEGIN
    SELECT "NodeId" INTO v_id FROM tree WHERE "parendId"=v_pid;
        IF FOUND THEN
            v_result := get_department_path_id(v_pid) || '/' || v_id;
        ELSE
            RETURN 'ac';
        END IF;
    RETURN v_result;
END;
$BODY$

    LANGUAGE 'plpgsql' VOLATILE;

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
I'm not sure which statement you're referring to, but assuming you have an SQLite database set up and you want to execute SQL statements on it, you can use a SQLite client or a programming language with a SQLite library to connect to the database and execute statements. Here are the general steps for using SQLite in a programming language: 1. Install a SQLite library for your programming language. Some popular ones include SQLite3 for Python, sqlite-jdbc for Java, and sqlite for Node.js. 2. Connect to the database using the library's API. This typically involves creating a connection object with the path to the database file and any other relevant connection information, such as credentials. 3. Execute SQL statements on the database using the connection object. This can be done with a variety of methods, depending on the library and programming language you're using. For example, in Python with the sqlite3 library, you can use the `execute` method of a connection object to run SQL statements. 4. Close the connection when you're finished working with the database. Here's an example of using the sqlite3 library in Python to execute a simple SQL statement: ```python import sqlite3 # Connect to the database conn = sqlite3.connect('example.db') # Execute a SQL statement conn.execute('CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)') # Close the connection conn.close() ``` This code creates a new SQLite database file called "example.db" and creates a new table called "users" with two columns, "id" and "name". The `execute` method is used to run the SQL statement. Finally, the connection is closed with the `close` method.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值