mysql字数最低限制怎么写?

如何用触发器限制文本字数,最少要100字?如果少于一百字就无法插入,这个应该怎么写比较

create trigger triggerName
before insert on 表名
for each row
begin
if LENGTH(new.字段名)>100 then
插入语句这里,注意value后面用new.xxx
end if;
end;