Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

here's what I'd like to do in mySQL... I'm getting the feeling that this is simply not feasible, but would love to be wrong...

create procedure foo(IN MYTABLE varchar(50) , IN COLNAME varchar (50), IN MYTYPE varchar(50)) 
begin 
IF (select count(*) from information_schema.columns where table_name =MYTABLE and column_name = COLNAME) = 0 
THEN
alter table MYTABLE add column MYNAME MYTYPE; 
end;

call foo( 'table_foo' , 'column_bar' , 'varchar(100)' );
share|improve this question

2 Answers

up vote 4 down vote accepted

Don't know why on Earth you would want it, but it's possible:

DELIMITER //
DROP PROCEDURE foo//
CREATE PROCEDURE foo(IN MYTABLE varchar(50) , IN COLNAME varchar (50), IN MYTYPE varchar(50))
BEGIN
  SET @ddl = CONCAT('alter table ', MYTABLE, ' add column (', COLNAME, ' ', MYTYPE, ')');
  PREPARE STMT FROM @ddl;
  EXECUTE STMT;
END;
//
share|improve this answer
Wow, talk about SQL injection! – Randolpho Feb 13 '09 at 22:06
It's in no way what I'd advise my children to do, but it's still possible :) – Quassnoi Feb 13 '09 at 22:13
green check mark reassigned! :) – Dr.Dredel Apr 22 '11 at 23:32

Short answer to why I'd do it.

Updating a deployed database when the version of your schema changes in a released product. Shell scripting is a bad option for cross-platform code so scripting in SQL is great, just remember to drop the procedures after use. If I have deployed 1.1 but am at 1.4 at time of update, i just run the 1.1->1.2, 1.2->1.3, and the 1.3->1.4 scripts in order.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.