Mysql
 sql >> Database >  >> RDS >> Mysql

Inserisci SQL? inserire i dati da uno all'altro

Stai confondendo due diversi stili di INSERT .

Per utilizzare lo stesso metodo del tuo esempio, dovresti fare:

INSERT INTO filenote(clientid, notetype, datetime, notedetails)
SELECT clientid, 'info','2011-09-29 09:00:00', 'example note'
FROM clienttable
WHERE clienttable.clientid in (1,2,3,4,5,6,7,8,9)

oppure usa BETWEEN :

INSERT INTO filenote(clientid, notetype, datetime, notedetails)
SELECT clientid, 'info','2011-09-29 09:00:00', 'example note'
FROM clienttable
WHERE clienttable.clientid BETWEEN 1 AND 9