Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Use test;
CREATE TEMPORARY TABLE TMP_tb_release_content(
id int(11) NOT NULL,
id_release int(11) NOT NULL,
id_language int(11) NOT NULL,
title varchar(255) DEFAULT NULL,
content text,
shortdescription text,
tag varchar(255) DEFAULT NULL
)TYPE=HEAP;
INSERT INTO TMP_tb_release_content (id, id_release, id_language, title, content, shortdescripion, tag)
select id, id_release, id_language, title, content, shortdescription, tag From tb_release_content;
select * from TMP_tb_release_content;
Erro:
Script line: 4 The used table type doesn't support BLOB/TEXT columns
Alguém sabe dizer pq isso não funciona ?
não saco muito de MySql, to mais acostumado com SQL Sever...
Carregando comentários...