-
Calculating a MOD 10 Check Digit
How do I perform a MOD calculation in SQL when the MOD operator is not available?
Scott
Example: 12 MOD 10 = 8
-
Re: Calculating a MOD 10 Check Digit
Use % called as Modulo in SQL Server to perform a MOD calculation.
ex ECLARE @A INT
DECLARE @B INT
SET @A=12
SET @B=10
SELECT @A%@B
Result is
2
Madhu.
"Scott" <sremiger@pnms.com> wrote:
>
>How do I perform a MOD calculation in SQL when the MOD operator is not available?
>
>Scott
>Example: 12 MOD 10 = 8
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|