A job partner said: when we create a table, the order of fields data type, in oracle database matters for performance. Example: if I have varchar columns first and date columns last I would have performance issues, but in my search I didn't find anything about it. It is true?
The order of columns can have a slight impact on performance, but it has nothing to do with the data types.
Some examples of where column order matters:
That all said... the performance impacts are usually negligible and usually dwarfed by performance problems caused by poor SQL, poor indexes, bad clustering, not using bind variables, etc.
Put your columns in your table in the order that they make sense to you.
If you later find a demonstrable performance impact (which will be rare!) you can restructure it later.
There are a million other considerations when designing for performance. This isn't one of them.