Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
abc123
Starting Member
47 Posts |
Posted - 2009-02-17 : 23:37:15
|
| I have following design requriementcol_name values values valuescol1 abc opo ghicol2 xyz lmn pqrcol3 Delta Delta1 Delta3here Delta,Delta1,Delta3 have following values Delta Delta1 Delta3 0.01 0.03 0.10 0.02 0.09 0.08 0.07 0.99 0.98Plz tell me how i can design the table for the above Scenario for better performance? |
|
|
abc123
Starting Member
47 Posts |
Posted - 2009-02-18 : 01:45:07
|
| Any suggestion on the same |
 |
|
|
Jai Krishna
Constraint Violating Yak Guru
333 Posts |
Posted - 2009-02-18 : 03:27:57
|
| for this type of values abc opo ghi varchar(n) field is best and for 0.02 0.09 0.08 use numeric(p,s) datatypeJai Krishna |
 |
|
|
|
|
|