[前][次][番号順一覧][スレッド一覧]

mysql:4188

From: "Ryo.Isozaki" <"Ryo.Isozaki" <Ryo.Isozaki@xxxxxxxxxx>>
Date: Thu, 23 Aug 2001 02:05:30 +0900
Subject: [mysql 04188] char が varchar に勝手に変換するのを止めたいのですが、

はじめまして。

磯崎と申します。

どなたか、ご存知の方がいらっしゃたら是非ききたいのですが、

create tableをするときに状況によって、charがvarcharに変わるとります。

実際に


create table user (
        userid         int primary key auto_increment,
        name           char(40) not null,
        password       char(12) not null,
        sex            enum('male','female'),
        address        char(80),
        phone          char(15),
        mailaddress    char(40) not null
);
の文をうつと、
charのままですが、

下記のような、文

       create table member(
       userid  int primary key auto_increment,
       mailaddress      char(40) not null,
       password         char(12) not null,
       fname      char(20) not null,
       name      char(20) not null,
       ffurigana char(20) not null,
       furigana         char(20) not null,
       sex              char(8)  not null,
       birthyear        char(4)  not null,
       birthmonth       char(2)  not null,
       birthday         char(2)  not null,
       job  char(20) not null,
       yubin1           char(3)  not null,
       yubin2           char(4)  not null,
       state            char(10) not null,
       addressdetail    char(80) not null,
       phone            char(15) not null,
       registerdate     datetime,
       kphone           char(15),
       kmailaddress     char(40),
       fphone           char(15),
       presentone       char(30),
       presenttwo       char(30),
       point            int default '0' not null,
       recomender       int default '0' not null,
       recomenderinfro  char(40),
       numrecomended    int default '0' not null,
       numliv           int default '0' not null,
       livtype          char(20),
       lastupdate       timestamp(14),
       comments         text
       );

をうつと3文字以上のcharはすべてvarcharに変換されます。
すべてcharのままにしておきたいのですが、

どうすればよいのでしょうか?

どうぞ、よろしくお願いします。


[前][次][番号順一覧][スレッド一覧]

->    4188 2001-08-23 02:05 ["Ryo.Isozaki" <Ryo.I] char が varchar に勝手に変換するのを止めたいのですが、
      4189 2001-08-23 06:09 ┣[Tatsuhiko Miyagawa <]                                       
      4191 2001-08-23 13:01 ┗[Daiju Azuma <daiju_a]