how we can store the value like that 001,003,023 etc in sql
server 2005
Answer Posted / nadeem
create table t(NUM int(22))
insert into t values(001)
insert into t values(002)
insert into t values(023)
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
List the different types of collation sensitivities in sql server?
How display code or Text of Stored Procedure using Sql query in Sql Server ?
Tell me the phases a transaction has to undergo?
What are the properties of sub-query?
What is data set in report?
How do I make a resultset scrollable?
How do I setup a sql server database?
How to get a list of columns in a view using the "sp_help" stored procedure?
Can you explain what is indexed view? How to create it?
What is the difference between drop table and truncate table?
explain different types of backups avaialabe in sql server? : Sql server database administration
What are the different types of collation sensitivity in sql server?
How many clustered indexes there can be on table ?
What is the native system stored procedure to execute a command against all databases?
What is acid mean in sql server?