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.