-2
Contextualizing:
I have the following table and store the creation date in the attribute date
.
+------------+
| Operation |
+------------+
| id |
| amount |
| type |
| date |
| product_id |
+------------+
I want to know which term fits best in this context, date
or create_at
?
in most databases
date
is a data type, and it is not good to have that name, the good same would be different names of the data type that may exist in the bank, example as posed in your question created, updated, etc ... Then check if there was this type of data in the bank if there is no date ...– novic
Just one comment, the right one in English is
created_at
.– Piovezan