PHPpgAdmin: How delete rows without using SQL

岁酱吖の 提交于 2019-12-10 23:35:09

问题


In phpMyAdmin I can delete rows without using SQL.

Is there a way to do this in phpPgAdmin ?


回答1:


phpPgAdmin (ppa) gives ability to edit/delete a row only when it founds an unique index in the table (or in requested fields for a query) and the value for the indexed col is not null.

Without unique index (or PK), ppa could not determine a WHERE clause to select the only row you want to edit/drop.




回答2:


Yes there is, just select the table, click "browse" and then click "delete" (in the column "actions") for every row you want to delete.



来源:https://stackoverflow.com/questions/2943167/phppgadmin-how-delete-rows-without-using-sql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!