To enter data, we will use an insert statement which has the following syntax:
INSERT INTO table_name
VALUES (value1, value2,....)
Specifically, for your first row of data type:
insert into incident
values('1', 'J. Doe', 30, 'Main St', '123456789', '3', '2006-08-01 10:15:00', 102.00);
This insert statement goes in the query window at the top, center for the query browser interface. Note that the insert statement contains a piece of data for each column in the table. This data must be in the same order as the columns in the table from left to right. If you copy and paste the text above from this web page into the query browser, the copy process may insert hidden characters that will cause the insert to fail. Better to type this command directly into the query browser interface. Once you have entered the insert statement, when you next do a select * from incident you should see a single row containing the data above.