dumb (re)newbie question...

2002-03-01 Thread Alex Behrens
Hey All, I recently got back into mysql again and haven't programmed for it in almost a year and have a really dumb newbie question. I need to add another row of data to an existing table what is the command to do so? Not like an UPDATE command where you input data into the table, but rather a

Re: dumb (re)newbie question...

2002-03-01 Thread Scalper
Hi Big Al: Here is an example: INSERT INTO friends_table(first_name,last_name) VALUES('John','Johnson'); Check out: http://www.mysql.com/doc/I/N/INSERT.html At 15:36 3/1/02 -0600, you wrote: Hey All, I recently got back into mysql again and haven't programmed for it in almost a year and

Re: dumb (re)newbie question...

2002-03-01 Thread Alex Behrens
3:44 PM Subject: Re: dumb (re)newbie question... New row = INSERT INTO table VALUES ... New column = ALTER TABLE add column_name column_defs Both are well documented in the online manual, though I prefer the PDF version. Cheers, # Nathan - Original Message - From: Alex