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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:19:26+00:00 2026-06-07T10:19:26+00:00

In my web application, I have customer name and customer phone number. I should

  • 0

In my web application, I have customer name and customer phone number. I should allow the same phone number multiple times. But I should not allow the same customer name to be entered multiple times. If there is already a customer named ‘Sean Patrick’ with mobile number ‘6039274849’. In future I should not allow a new user with same name (‘Sean Patrick’). But I can allow the same mobile number to be entered (‘6039274849’).

Assume the table structure as

CUSTOMER TABLE

columns
CUSTOMER_ID UNIQUE
CUSTOMER NAME
CUST_MOB_NUMBER

I am using Spring ROO. We will use HibernateJPA(aspectJ code) for database related stuffs.

Can anyone tell how to do this. As of now I am thinking of making 2 columns uique.
Is there any any way to make 2 columns unique together?

  • 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-06-07T10:19:28+00:00Added an answer on June 7, 2026 at 10:19 am

    Assuming that the requirements make sense (it really doesn’t make sense to say that no two customers are going to have the same name– there are lots of John Smiths in the world). And people often have multiple mobile numbers.

    You can declare both customer_id and customer_name as unique (though customer_id almost certainly ought to be declared as a primary key, not merely unique)

    CREATE TABLE customer (
      customer_id      NUMBER PRIMARY KEY,
      customer_name    VARCHAR2(100) UNIQUE,
      cust_mob_number  VARCHAR2(20)
    );
    

    You an also declare a combination of two columns as unique

    CREATE TABLE customer (
      customer_id      NUMBER PRIMARY KEY,
      customer_name    VARCHAR2(100),
      cust_mob_number  VARCHAR2(20),
      CONSTRAINT uk_name_and_number UNIQUE( customer_name, customer_mob_number )
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

we have implemented a web application in asp.net 4.0 and customer needs us to
In my web application, I have text box where the user should enter characters
I have multiple web applications (PHP) which are being served to different customers from
I have one question; In my ASP.NET MVC web application have to do certain
In my web application I have taken a ajax calendar in that i want
In my web application i have registration form, when user register i want to
in my web application I have a button when I click I want to
In my web application we have many users.I want to set permission for each
In my web application users have the ability to upload games which are then
I am building a web application and have been told that using object oriented

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.