Consider the errors

Report a typo

A developer wrote a stored procedure named NewUsers that selects all users from the table users where days_from_registration column is less than 7:

SELECT PROCEDURE NewUsers ()
BEGIN
    INSERT
        *
    FROM
        users
    WHERE
        days_from_registration < 7;
GO;

But there're some syntax errors. Type their amount.

Enter a number
___

Create a free account to access the full topic