up vote 5 down vote favorite
4
share [g+] share [fb]

I want to do something like this:


create table app_users
(
    app_user_id smallint(6) not null auto_increment primary key,
    api_key     char(36) not null default uuid()
);

However this results in a error, is there a way to call a function for a default value in mysql?

thanks.

link|improve this question

47% accept rate
feedback

3 Answers

up vote 13 down vote accepted

No, you can't.

However, you could easily create a trigger to do this, such as:

CREATE TRIGGER before_insert_app_users
  BEFORE INSERT ON app_users 
  FOR EACH ROW
  SET new.api_key = uuid();
link|improve this answer
Thanks, that was just what I needed. – Jarett Jun 14 '09 at 2:01
feedback

Unfortunately no, MySQL 5 requires constants for the default. The issue was discussed in much more detail in the link below. But the only answer is to allow null and add a table trigger.

MySQL only recently accepted UUID as part of their DB package, and it's not as feature rich as we'd like.

http://www.phpbuilder.com/board/showthread.php?t=10349169

link|improve this answer
feedback

I believe you can't:

the default value must be a constant; it cannot be a function or an expression

link|improve this answer
Not true, you can use getdate() – amr osama Jan 12 at 9:18
feedback

Your Answer

 
or
required, but never shown

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