Home  >  Article  >  Database  >  PostgreSQL 使用 delete 删除数据的时候关联多个表

PostgreSQL 使用 delete 删除数据的时候关联多个表

WBOY
WBOYOriginal
2016-06-07 14:54:503512browse

删除game_pg_getpoint表中的数据,需要关联getpoint表 PostgreSQL DELETE FROM game_pg_getpoint USING getpoint WHERE (getpoint.fixflg = 1 OR game_pg_getpoint.immediately_flag=1) AND game_pg_getpoint.memberid = getpoint.memberid AND game_pg_getpo

删除game_pg_getpoint表中的数据,需要关联getpoint表 PostgreSQL
DELETE FROM game_pg_getpoint USING getpoint    
    WHERE (getpoint.fixflg = 1 OR game_pg_getpoint.immediately_flag=1)   
        AND game_pg_getpoint.memberid = getpoint.memberid   
        AND game_pg_getpoint.comment = getpoint.comment   
        AND game_pg_getpoint.thanksid = getpoint.thanksid   
        AND game_pg_getpoint.thanksname = getpoint.thanksname   
        AND game_pg_getpoint.getpoint_regist_date = getpoint.registdate  
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn