nahum castro <pedro1_72(at)yahoo(dot)com> writes:
> en el fecha tengo que restringir el año al 2003
> en los numericos un intervalo ej. 1 - 100, (si se
> introduce p ej. 201 me salga un error).
Puedes usar check constraints, por ejemplo:
create table foo (
-- el año de la fecha tiene que ser 2003
foo date check (extract('year' from foo) = 2003),
-- el valor del bar esta entre 1 y 100 (inclusive)
bar int check (bar >= 1 AND bar <= 100)
);
Saludos,
Manuel.