Guga01 0 Denunciar post Postado Fevereiro 24, 2010 Olá pessoal! Normalmente, quando crio tabelas que precisam de um índice para autoincremento, uso o seguinte tipo: `id` int(11) NOT NULL auto_increment Gostaria de saber se é uma boa opção ou vocês sabem e usam outro que consideram melhor? Por quê? Obrigado! Compartilhar este post Link para o post Compartilhar em outros sites
Dee 0 Denunciar post Postado Fevereiro 24, 2010 ID Auto Incremento é a melhor opção. Sempre é bom ter um identificador, que individualize a instância (ou registro). Você conseguirá trabalhar melhor nas páginas que for desenvolver. Compartilhar este post Link para o post Compartilhar em outros sites
Guga01 0 Denunciar post Postado Fevereiro 24, 2010 Olá Dee! Acho que não expliquei direito a minha dúvida. Sei que devo usar o id autoincremento. Minha dúvida é: esse autoincremento deve ser do tipo int(11) como uso, ou unsigned int, int(6), ... Vi um exemplo de tabela onde é usado: id mediumint(8) Unsigned Not Null auto_increment. Porque de repente o int(11) não seja necessário, sendo que pode haver um outro tipo que dê conta do recado e deixe a tabela mais "leve". Obrigado! Compartilhar este post Link para o post Compartilhar em outros sites
h4v3st 1 Denunciar post Postado Fevereiro 24, 2010 Int(6) voce pode ter ate número de 6 dígitos, ou seja, 999999. Eu utilizo int(6). Compartilhar este post Link para o post Compartilhar em outros sites
Dee 0 Denunciar post Postado Fevereiro 24, 2010 Eu uso int(4). 4 é Bytes quando se trata de tipos Int. O tamanho que ele ocupa. (-2^63 (-9.223.372.036.854.775.808) a 2^63-1 (9.223.372.036.854.775.807)) http://msdn.microsoft.com/pt-br/library/ms187745.aspx Mas se você estiver declarando manualmente não precisa por nada na frente. Se for pelo modo Design, deixa 4 mesmo. Compartilhar este post Link para o post Compartilhar em outros sites
Eclesiastes 2 Denunciar post Postado Fevereiro 25, 2010 Essa especificação na criação de um INT não limita o range dele. É apenas para padding. Assim diz o manual: Another extension is supported by MySQL for optionally specifying the display width of integer data types in parentheses following the base keyword for the type (for example, INT(4)). This optional display width may be used by applications to display integer values having a width less than the width specified for the column by left-padding them with spaces. (That is, this width is present in the metadata returned with result sets. Whether it is used or not is up to the application.) The display width does not constrain the range of values that can be stored in the column, nor the number of digits that are displayed for values having a width exceeding that specified for the column. For example, a column specified as SMALLINT(3) has the usual SMALLINT range of -32768 to 32767, and values outside the range allowed by three characters are displayed using more than three characters. When used in conjunction with the optional extension attribute ZEROFILL, the default padding of spaces is replaced with zeros. For example, for a column declared as INT(5) ZEROFILL, a value of 4 is retrieved as 00004. Note that if you store larger values than the display width in an integer column, you may experience problems when MySQL generates temporary tables for some complicated joins, because in these cases MySQL assumes that the data fits into the original column width. Compartilhar este post Link para o post Compartilhar em outros sites