sathish


{ City } hyderabad
< Country > india
* Profession *
User No # 53659
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 10
Questions / { sathish }
Questions Answers Category Views Company eMail




Answers / { sathish }

Question { 7367 }

how we can store the value like that 001,003,023 etc in sql
server 2005


Answer

create table value(num int(3))
insert into value values(001)
insert into value values(003)
insert into value values(023)

to see this table
select * from value

Is This Answer Correct ?    0 Yes 10 No