Good I need to enter high values for example 65.000.00 for the price of a product I have a Price field defined as Numeric (18.2) But it only allows me to enter values less than or equal to 999.00 as I would in this case?
Good I need to enter high values for example 65.000.00 for the price of a product I have a Price field defined as Numeric (18.2) But it only allows me to enter values less than or equal to 999.00 as I would in this case?
The problem is elsewhere. Yes you can.
--PostgreSQL 9.6
--'\' is a delimiter
select version() as postgresql_version;
create table grandes(
el_valor numeric(18,2)
);
insert into grandes values (1234567899012345.79);
select * from grandes;
Maybe you're confusing points with commas. You could give an example that does not work for you in a place like this: link