Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Boolean
Date and time
11. Date and time – inserting data
Summary

Instruction

That's it! You did a good job!

Exercise

We prepared the latest version of the payment table for you:

CREATE TABLE payment (
  user_id int,
  amount decimal(4, 2),
  date_time timestamp
);

Your task is to add the following row: the user's id is 19, the amount is $19.23 and the timestamp is 3:00 on May 1, 2019.

Stuck? Here's a hint!

The date_time should equal '2019-05-01 03:00:00'.