Auto incremento
existe auto incremento no MySql?
Como posso fazê-lo?
Como posso fazê-lo?
Alexandretavares
Curtidas 0
Respostas
Douglasf
09/05/2005
na criação da tabela você define se será auto incremento ou não.
ou com alter table
CREATE TABLE Teste (FieldName MEDIUMINT (8) UNSIGNED AUTO_INCREMENT, PRIMARY KEY(FieldName))
ou com alter table
ALTER TABLE Testel CHANGE Cliente_ID Cliente_ID AUTO_INCREMENT
GOSTEI 0