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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:35:23+00:00 2026-06-17T10:35:23+00:00

I have Customer table: CREATE TABLE Customer ( ID INTEGER NOT NULL DEFAULT 0,

  • 0

I have “Customer” table:

CREATE TABLE Customer
(
    ID INTEGER NOT NULL DEFAULT 0,
    Username CHAR(50) NOT NULL,
    Password CHAR(100) NOT NULL,
    LastName CHAR(20) NOT NULL,
    PhoneNumber BIGINT NOT NULL,
    MobileNumber BIGINT NOT NULL,
    PRIMARY KEY (ID)
) 
;

I used char for password type, is this right? And for mobile number I used bigint, is this right? If not what should I do ? And what is the SQL statement for it? 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-06-17T10:35:25+00:00Added an answer on June 17, 2026 at 10:35 am

    As these fields will all be variable lengths you should definitely use VARCHAR instead of CHAR for ‘Username’, ‘Password’ & ‘Lastname’. If you have limits on the lengths these then you can always limit the VARCHAR type to that limit.

    As for ‘PhoneNumber’ & ‘MobileNumber’, you won’t be performing any calculations with these values, so there’s no reason not to store them as VARCHAR, not to mention that telephone number often contain a 0 as the first character which cannot be stored as an INT of any kind.

    Something like:

    CREATE TABLE `Customer` (
     `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
     `Username` varchar(255) NOT NULL DEFAULT '',
     `Password` varchar(255) NOT NULL DEFAULT '',
     `LastName` varchar(255) NOT NULL DEFAULT '',
     `PhoneNumber` varchar(100) DEFAULT NULL,
     `MobileNumber` varchar(100) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this MySQL table: create table test.customer ( ID INTEGER, CREATION_TIME DATETIME, CREATION_USER
Suppose I have a table of customers: CREATE TABLE customers ( customer_number INTEGER, customer_name
I have 3 tables. cinema, booking and customer create table cinema ( c_id int,
I have this ant script which should create the table customer. I see the
I have table CUSTOMER where CUSTOMER_ID is primary key. Table CREATE TABLE [CUSTOMER]( [CUSTOMER_ID]
Suppose you have a table: CREATE TABLE Customer ( batch_id NUMBER, customer_name VARCHAR2(20), customer_address
I have a customer table where I'm currently storing: Last Name First Name Middle
Let's say I have a Customer table which has a PrimaryContactId field and a
I have an customer invoice table in my MySQL database with a DECIMAL(10,2) field
Say I have a typical customer table; Id Int Identity Primary Key, FirstName varchar(255),

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.