List rows of table
GET {{db_url}}/{{db_table}}
Retrieves all rows in a table, equivalent of:
SELECT * FROM <your table name>;
RESPONSES
status: OK
[{"id":1,"firstName":"Joe","lastName":"Bloggs"},{"id":2,"firstName":"Ben","lastName":"Smith"},{"id":3,"firstName":"Sue","lastName":"Brown"}]