Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7600895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:01:42+00:00 2026-05-30T23:01:42+00:00

I have an 8-digit TEXT field (called Code) and want to do a select

  • 0

I have an 8-digit TEXT field (called Code) and want to do a select “where Code mod 3 is 0”.
How do I write this where clause in ms-sql, in particular? I believe the query should be the same in other versions of SQL. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:01:44+00:00Added an answer on May 30, 2026 at 11:01 pm

    Firstly – DONT DO THIS! Putting scalar calculations in where clauses makes them non-SARGable which effectively means you can’t use indexes and have to do table scans.

    Secondly – DONT DO THIS! If any of your codes can’t cast to an INT then this will fail.

    Thirdly – If you still want to do this despite the two warnings, this is how:

    -- If field is varchar
    WHERE CAST(Code AS INT) % 3 = 0
    
    -- If field is TEXT
    WHERE CAST(CAST(Code AS VARCHAR(10)) AS INT) % 3 = 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have text field where user need to write some numbers. Is there any
I have an access table with a text field. It has alpha numeric values.
I have a text field which I need to validate using a regex. My
I have an integer field with numbers ranging from 1000 to 99999. I want
I have a text field in Microsoft Access which consists of only digits. I
I have this problem I'm using DataGrid + dojo.store.JsonRest as store. I want to
i have to validate text field that allows only two digits after . eg:12.34
I have a zipcode stored in a text field (string) and would like to
I wrote a validation code for an input text field, which will take only
I have the code that you can check in this fiddle: http://jsfiddle.net/4SCrp/5/ <form id=my_form>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.