Results 1 to 3 of 3

Thread: 64 bit datatype

  1. #1
    rob Guest

    64 bit datatype

    Is there a datatype that I can use to store a 64 bit unsigned int? I'm using SQL 6.5. Was thinking of using the standaed Interger datatype.

  2. #2
    Ray Miao Guest

    64 bit datatype (reply)

    On 11/23/98 3:14:07 PM, rob wrote:
    > Is there a datatype that I can use to store a 64 bit unsigned int? I'm
    > using SQL 6.5. Was thinking of using the standaed Interger datatype.

    The limit of unsigned integer for SQL is 0<=n<=((2p32)-1).

  3. #3
    Anthony B. Kenitzki Guest

    64 bit datatype (reply)


    Try using a numeric(28,0) datatype.

    It should store a 64 bit UNsigned int.

    Anthony B. Kenitzki

    On 11/23/98 3:14:07 PM, rob wrote:
    > Is there a datatype that I can use to store a 64 bit unsigned int? I&#39;m
    > using SQL 6.5. Was thinking of using the standaed Interger datatype.

Posting Permissions

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