[PHP] Add column to table

2002-12-11 Thread Shaun
Hi, please could someone tell me what the sql command is to add a colummn to a table? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fw: [PHP] Add column to table

2002-12-11 Thread Rick Emery
First, you've asked the wron list; ask the mysql list Second: ALTER mytable ADD COLUMN new column INT UNSIGNED AFTER old_column; - Original Message - From: Shaun [EMAIL PROTECTED] To: Sent: Wednesday, December 11, 2002 8:25 AM Subject: [PHP] Add column to table Hi, please could

Re: [PHP] Add column to table

2002-12-11 Thread bbonkosk
look at the alter table syntax on the mysql Documentation page. nice version of RTFM -Brad Hi, please could someone tell me what the sql command is to add a colummn to a table? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] add column?

2001-11-18 Thread Marts
Hi, Below is a segament of my source as you can see it Switchin is taken from the row, I need it to be taken from the column can I just change it to $mycolumn? Thanks for your help $insum = $insum + $myrow[Switchin]; $outsum = $outsum + $myrow[Switchout];