Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > MySQL
|
MySQL General discussion about the MySQL database.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the MySQL section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 4th, 2006, 10:24 PM
Registered User
 
Join Date: May 2006
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to moooon
Default ALTER TABLE CHECKING

I have following query :

Code:
alter table table_member add temp1234 int(10);
How can i enhance it by the checking field/column `temp1234` existence before perform alter table?

 
Old May 5th, 2006, 12:09 AM
Authorized User
 
Join Date: Mar 2006
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hello moooon,

I don't know which mysql version you are using.
In version 5.1.7-beta-log , database "INFORMATION_SCHEMA" has been provided.
Information_schema contain table "COLUMNS".
See using..
mysql> desc columns; // for more details
Now you can make simple select statement which will provide you the info like
which column is/are in which table. Your statement.....

mysql> SELECT table_name,column_name
       FROM COLUMNS
       WHERE table_name LIKE 'table_member%';

Regards
MILIND


 
Old May 5th, 2006, 01:56 AM
Registered User
 
Join Date: May 2006
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to moooon
Default

Hi MILIND
Thanks alot!
That is very helpful.
Regards,






Similar Threads
Thread Thread Starter Forum Replies Last Post
Help on 'Alter Table' command charuni Classic ASP Basics 0 April 14th, 2006 11:14 AM
Alter Table Permissions Colonel Angus SQL Server 2000 2 September 21st, 2005 07:29 AM
(oracle 8i)Alter Table <table> coalesce partition combo Oracle 3 October 13th, 2004 09:35 AM
ALTER TABLE Daniel Schaffer Access ASP 0 April 25th, 2004 12:47 PM
ALTER TABLE syntax barjah SQL Server 2000 1 October 29th, 2003 02:30 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.