type = MYISAM type = InnoDB type = InnoDB type = InnoDB;
alter table UNIDADE comment 'Aramazena as unidades dos produtos.';
Apresenta este erro:
(0 row(s)affected)
(0 ms taken)
(0 row(s)affected,1 warning(s))
(0 ms taken)
Error Code : 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type = MYISAM type = InnoDB type = InnoDB type = InnoDB' at line 10
Pergunta
nicol store
use SISCOMNIC;
drop table if exists UNIDADE;
/*==============================================================*/
/* Table: UNIDADE */
/*==============================================================*/
create table UNIDADE
(
CODIGO_UNIDADE integer not null auto_increment,
DESCRICAO_UNIDADE char(5),
primary key (CODIGO_UNIDADE)
)
type = MYISAM type = InnoDB type = InnoDB type = InnoDB;
alter table UNIDADE comment 'Aramazena as unidades dos produtos.';
Apresenta este erro:
(0 row(s)affected)
(0 ms taken)
(0 row(s)affected,1 warning(s))
(0 ms taken)
Error Code : 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type = MYISAM type = InnoDB type = InnoDB type = InnoDB' at line 10
(0 ms taken)
Error Code : 1146
Table 'siscomnic.unidade' doesn't exist
(0 ms taken)
Editado por Denis CourcyLink para o comentário
Compartilhar em outros sites
3 respostass a esta questão
Posts Recomendados