By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE t
([id] int, [name] varchar(1), [status] int)
;
INSERT INTO t
([id], [name], [status])
VALUES
(2, 'a', 1),
(2, 'a', 2),
(2, 'a', 3),
(2, 'a', 2),
(2, 'a', 1),
(3, 'b', 2),
(3, 'b', 1),
(3, 'b', 2),
(3, 'b', 1)
;
9 rows affected