I'm creating a table using Postgres and I've received a data dictionary for a table where a certain column name Price will have a type Real, Dec = 2 and can be NULL. Can someone explain what is meant by the data dictionary saying Real, Dec = 2? Does this mean this value will have a precision of 2 decimal places (e.g. 34.456654)?
When declaring this column inside the table should I do: Price REAL NULL?