On Tue, Jan 23, 2001 at 11:19:20AM +0100, Gustav Wiberg wrote:
> Hi
> 
> Why can't I do like this?
> 
> insert into tbnamn (fornamn, efternamn) values('g1','g2','g3','g4');
> 
> where fornamn and efternamn is the only fields in the table tbnamn

Try:

insert into tbnamn (fornamn, efternamn) values ('g1','g2'), ('g3','g4);

G'luck,
Peter

-- 
This would easier understand fewer had omitted.

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to