0
There is a part of the system where the user will fill a lot of information just choosing between options selects
, those selects
are fed information I have registered in my database.
When I am storing this information in its proper table, is it better that I save the text directly or is it better that I save the ID of the elements that were selected? And why?
This information will be used later to generate a PDF that will display all the data that has been saved.
I think it would be faster at the time to generate the PDF if I store the texts, because if I store the ID I will have to make other queries to generate the PDF right? But would that be wrong in any way? It will cause problems if you choose to store this amount of text instead of only storing the element ID?
Thanks @Pauloflesch, I will keep the option to store the msm Ids.
– Raylan Soares