PostgreSQL
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> PostgreSQL

Làm thế nào để xóa nhận xét khỏi tệp sql thô

Hãy thử sqlparse mô-đun.

Ví dụ đã cập nhật: để lại nhận xét bên trong giá trị chèn và nhận xét trong khối TẠO CHỨC NĂNG . Bạn có thể điều chỉnh thêm để điều chỉnh hành vi:

import sqlparse
from sqlparse import tokens

queries = '''
CREATE FUNCTION func1(a integer) RETURNS void
    LANGUAGE plpgsql
        AS $$
        BEGIN
                -- comment
       END;
       $$;
SELECT -- comment
* FROM -- comment
TABLE foo;
-- comment
INSERT INTO foo VALUES ('a -- foo bar');
INSERT INTO foo
VALUES ('
a 
-- foo bar'
);

'''

IGNORE = set(['CREATE FUNCTION',])  # extend this

def _filter(stmt, allow=0):
    ddl = [t for t in stmt.tokens if t.ttype in (tokens.DDL, tokens.Keyword)]
    start = ' '.join(d.value for d in ddl[:2])
    if ddl and start in IGNORE:
        allow = 1
    for tok in stmt.tokens:
        if allow or not isinstance(tok, sqlparse.sql.Comment):
            yield tok

for stmt in sqlparse.split(queries):
    sql = sqlparse.parse(stmt)[0]
    print sqlparse.sql.TokenList([t for t in _filter(sql)])

Đầu ra:

CREATE FUNCTION func1(a integer) RETURNS void
    LANGUAGE plpgsql
        AS $$
        BEGIN
                -- comment
       END;
       $$;

SELECT * FROM TABLE foo;

INSERT INTO foo VALUES ('a -- foo bar');

INSERT INTO foo
VALUES ('
a
-- foo bar'
);


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. initdb:không thể thay đổi quyền của thư mục trên vùng chứa Postgresql

  2. Cập nhật nhiều giá trị jsonb

  3. LỖI:số nhận dạng được phân tách có độ dài bằng 0 tại hoặc gần DÒNG 1:XÓA KHỎI khu vực WHERE khu vực. =$ 1

  4. Cách nhận thông tin kế hoạch truy vấn từ Postgres vào JDBC

  5. Thay đổi ngôn ngữ của hệ thống và thông báo lỗi trong PostgreSQL