I have the following query:
ALTER TABLE compras.factura_gasto ADD COLUMN m_excento numeric(36,2);
ALTER TABLE compras.factura_gasto ALTER COLUMN m_excento SET DEFAULT 0::numeric;
My question is: In SET DEFAULT Is there any difference between having SET DEFAULT 0
and SET DEFAULT 0::numeric
?