' cria o campo
ALTER TABLE tabela4
add COLUMN campo_texto1 text(50);
ou cria a tabela
create table tabela1 (
id AutoIncrement Primary Key,
campo_numero number,
campo_texto text(50),
Campo_date date,
Campo_memo longtext,
campo_binary binary,
campo_BIT BIT,
Campo_Byte byte,
campo_currency currency,
campo_LONGTEXT LONGTEXT
)
ou altera o campo
ALTER TABLE tabela4
ALTER COLUMN campo_texto1 TEXT(250);