Incec asa dar nu merge
INSERT INTO studenti ('Nume','Prenume')
VALUES
(SELECT nume FROM nume where id between 1 and 1200),
(SELECT prenume FROM prenume where id between 2000 and 3200);
Am eroarea asta You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Nume','Prenume')
VALUES
(SELECT nume FROM nume where id between 1 and 1200),' at line 1
si daca le rulez independent functioneaza insa nu stiu cum as putea sa umplu tabelul
INSERT INTO studenti (Nume)
SELECT Nume FROM nume
WHERE id<=1200;

