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 3630192
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T00:14:20+00:00 2026-05-19T00:14:20+00:00

I have a database that may have a value in one of the fields.

  • 0

I have a database that may have a value in one of the fields. Circumstance may need to remove the initial value and replace it with a NULL.

How can NULL values be inserted in an empty field?

Appreciate it.

  • 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-19T00:14:20+00:00Added an answer on May 19, 2026 at 12:14 am

    You’d write a query that’s something like this:

    <cfquery name="queryName" datasource="dsn">
      UPDATE tableName SET fieldName = NULL
      WHERE recordId = <cfqueryparam cfsqltype="cf_sql_integer" value="#recordId#" />
    </cfquery>
    

    Also, there’s a difference between a blank string and a NULL value. The thing to remember about NULL is that it doesn’t equate to anything but NULL. But it also doesn’t equate to non-NULL values. So if you have three records in your table:

    ID     VALUE
    1      15
    2      NULL
    3      30
    

    When you run this query:

    SELECT ID from tableName where value != 15
    

    you will ONLY get record 3. The way to make sure record 2 is included in the resultset is to alter your query as such:

    SELECT ID from tableName where coalesce(value,16) != 15
    

    The purpose of coalesce is to check the first parameter for NULL-ness, and use the value of the second parameter instead if the first parameter is NULL. In the above example, I’ve put ’16’ as the second parameter, but you can use any value you want as long as it’s not the same as what you’re comparing for (in this case, 15).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database that contains two fields that collect multiple values. For instance,
I have two fields in my database that simply store on and off times
I have a struts2 application with a single page that may show one of
I have database MySQL and in one of the tables fields I have a
Let's say we have a field that can be in more than one type,
I have one table that stores values with a point in time: CREATE TABLE
I have a database that contains a date and we are using the MaskedEditExtender
I have a database that I would like class files generated from, and also
I have a database that many different client applications (a smattering of web services,
I have a database that contains a table that looks a bit like this:

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.