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

Instruction

Good job. You deserve another break.

Exercise

Play around with the values in the column amount and try some which are out of range. We specified two digits after the decimal point, so why don't you try to insert a value which has three?

Here is a quick reminder of the table definition:

CREATE TABLE payment (
    user_id int,
    amount decimal(6,2)
);