2

In phpMyAdmin I can delete rows without using SQL.

Is there a way to do this in phpPgAdmin ?

Alex Bitek
  • 6,529
  • 5
  • 47
  • 77
xRobot
  • 25,579
  • 69
  • 184
  • 304

2 Answers2

5

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.

pcent
  • 1,929
  • 2
  • 14
  • 17
  • 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
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.

Frank Heikens
  • 117,544
  • 24
  • 142
  • 135