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

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

WBOY
Release: 2016-06-07 14:54:50
Original
3525 people have browsed it

删除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  
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template