Mysql
 sql >> Database >  >> RDS >> Mysql

chiave primaria composita (alfanumerica) e incremento automatico

L'ho chiesto tempo fa. MySQL non lo fa purtroppo. Mi piacerebbe, ma non è così. In php potresti farlo. Esempio:

public function random_id_gen($length)
    {
        //the characters you want in your id
        $characters = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
        $max = strlen($characters) - 1;
        $string = '';

        for ($i = 0; $i < $length; $i++) {
            $string .= $characters[mt_rand(0, $max)];
        }

        return $string;
    }