I am looking for an efficient way to store users' information in a SQL Server 2008 table.
All user data in the design will be stored in a table in a column, but one of the columns will need to store the list of values, for example: 'column1' Will store
user name
, 'column2'
user id
and 'column 3' which will change over time I will store a list of items. I
I would like this information to be different for each user I really want to avoid putting because you will need several tables in the database.
What data types should I use for this
? Should I use a completely different approach? 'Column3'
I think we can use it on SQL Server, but it only works for temporary storage.
Thank you.
Generally accumulating multiplier values in columns is an indication of poor database design that is that single column Based on the criteria, it makes it very difficult to choose the rows efficiently. If you really need to select those values based on only one line line, consider using XML.
Comments
Post a Comment