✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Specificați opțiunea care descrie corect acțiunea codului de mai jos.
DECLARE @mytable TABLE (id INT, myname CHAR(20) DEFAULT 'GROSU AUREL')
INSERT INTO @mytable(id) VALUES (1)
INSERT INTO @mytable(id, myname) VALUES (2,'VASILE CEBAN')
SELECT * FROM @mytable