0 / 60 seg.

What is the result of these three commands?

CREATE TABLE MyNumbers (
    MyDecimalColumn decimal(5,2) NOT NULL
);
INSERT INTO MyNumbers VALUES (123), (45);
SELECT * FROM MyNumbers;