开发者

Convert a 18 character string to and int

开发者 https://www.devze.com 2023-01-23 23:25 出处:网络
How to conve开发者_运维知识库rt 18 character string to int in microsoft access database e.g \"999999999999999999\"You can\'t. An int is too small to hold a number like that.

How to conve开发者_运维知识库rt 18 character string to int in microsoft access database

e.g "999999999999999999"


You can't. An int is too small to hold a number like that.

You can convert it to the Decimal data type:

cdec('999999999999999999')
0

精彩评论

暂无评论...
验证码 换一张
取 消