Results 1 to 2 of 2

Thread: Integer Datatype

  1. #1
    Sanjeev Kumar Guest

    Integer Datatype

    Hi all,

    I have a situation where I will have to insert a value(whole number) into the table where the the value is more than what the Integer can hold , I was wondering is there any other datatype which i can use other than integer


    Thanks in advance.

    Sanjeev Kumar




  2. #2
    MAK Guest

    Integer Datatype (reply)

    use decimal with no precision.

    create table xxxxxx( xxx decimal(5,0))



    -MAK
    ------------
    Sanjeev Kumar at 12/4/00 11:25:09 AM

    Hi all,

    I have a situation where I will have to insert a value(whole number) into the table where the the value is more than what the Integer can hold , I was wondering is there any other datatype which i can use other than integer


    Thanks in advance.

    Sanjeev Kumar




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •