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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:50:27+00:00 2026-05-30T05:50:27+00:00

Hi I am using sqldeveloper conected to an oracle database. My senario is I

  • 0

Hi I am using sqldeveloper conected to an oracle database.

My senario is I have a customer table in my database with a date field called start_date which holds the date of the day the user signed up and a “boolean” field called is_member. Each membership only lasts one year so is_member is false if SYSDATE > start_date + 1year.

I would like to do a check to see if a user is still a member (and change is_member if not) before the user calls a select statement. Is this possible?

If not has anyone got any ideas on how else to keep the is_member field up to date? Can you do a trigger that is called once a day to see if the membership has expiered?

Thanks in advace! =]

  • 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-30T05:50:28+00:00Added an answer on May 30, 2026 at 5:50 am

    Don’t use a table column to store dependent data, use a view:

    CREATE OR REPLACE VIEW customer_v AS
    SELECT c.*, 
           CASE WHEN SYSDATE > add_months(c.start_date, 12) 
              THEN 'FALSE' 
              ELSE 'TRUE' 
           END is_member
      FROM customer c
    

    The is_member view column will always contain up-to-date data.

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

Sidebar

Related Questions

Newbie SQL Query question: I'm using Oracle SQL Developer. I have a table: <name>
I am using Oracle SQL (in SQLDeveloper, so I don't have access to SQLPLUS
I have a table with a field named COMMENT, which appears to be a
I'm using Oracle SQL Developer to query an Oracle DB (not sure which version
I'm using oracle 11g sql developer I have a varchar2 column with dates as
Hi I'm using sqldeveloper connected to an oracle server. I'm trying to change the
I have installed jdk1.6.0_21 and sqldeveloper(using alien) on debian(lenny). Now when I run sqldeveloper
We have an Oracle DB using UTF-8 (NLS_CHARACTERSET = AL32UTF8). We then have a
I am using Oracle SQL Developer and trying to export a table to a
I'm new to using Oracle SQL Developer and to using an Oracle DB (have

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.