1

Is there a way to insert data here, for example, by clicking "Add new row" or double clicking the entry? I'm used to this feature in SequelPro, and it seems a bit crude to not allow a simple GUI way to add in a new row (the reason why I'm using this is so I don't have to manually type in INSERT statements:

enter image description here

David542
  • 104,438
  • 178
  • 489
  • 842

1 Answers1

0

Two easy ways:

  1. Right click anywhere in the table, without selecting a certain row. Choose Add new Row
  2. Right click any row, and choose Duplicate Row, this creates a new row with duplicated data, and Null id if you have a primary key. This is not committed to the database until you fix the data that you want. Change what you want and press Enter.

Ta da! You have your data

mrateb
  • 2,317
  • 5
  • 27
  • 56