就是我创建一个值的时候~~  能不能不需要指定那个函数~而是在创建字段的时候  自定义的~  比如INSERT INTO  `openvpn`.`vpnuser` (
`id` ,
`name` ,
`Password` ,
`active`
)
VALUES (
NULL ,  'test11', PASSWORD(  '12345' ) ,  '2'
);现在我每次插入的时候~ 都要指定PASSWORD这个函数~~能不能不指定 就默认使用PASSWORD这个函数~~我刚接触MYSQL不久~~ 不要笑话哈~

解决方案 »

  1.   

    每个人都是从这一步开始的。多看看文档就好了。MySQL官方文档 http://dev.mysql.com/doc/refman/5.1/zh/index.html
      

  2.   

    不能,MYSQL HELP
    The DEFAULT value clause in a data type specification indicates a default value for a column. With one exception, the default value must be a constant; it cannot be a function or an expression. This means, for example, that you cannot set the default for a date column to be the value of a function such as NOW() or CURRENT_DATE. The exception is that you can specify CURRENT_TIMESTAMP as the default for a TIMESTAMP column. See
      

  3.   

    认命了~~~ruby 又不能自定义写MYSQL的语句。。 这下咋办了~~