Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In PHPmyAdmin I can delete rows without using SQL.

Is there a way to do this in PHPpgAdmin ?

share|improve this question

2 Answers

up vote 2 down vote accepted

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.

share|improve this answer
ops... you right. How can I add a PK on my existing table ? – xRobot May 31 '10 at 15:23
ALTER TABLE your_table ADD PRIMARY KEY (your_id_field1); Be aware that the key fields must not be null... – pcent May 31 '10 at 16:52
I've just seen your other question about PK, there's a more complete answer – pcent May 31 '10 at 17:01

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

share|improve this answer
I don't see column actions. Are you sure you are talking about PHPpgAdmin and not PHPmyAdmin ? – xRobot May 31 '10 at 11:58
Yes I am: phppgadmin.kattare.com/phppgadmin4 – Frank Heikens May 31 '10 at 12:04
I see column actions but In my PHPpgAdmin there is NOT a column actions. Maybe is it disabled ? thanks ^_^ – xRobot May 31 '10 at 12:14
In some table of your phppgadmin there isn't column actions. – xRobot May 31 '10 at 12:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.