SlideShare a Scribd company logo
DATA DICTIONARY
Group1

TABLE NAME        ATTRIBUTE NAME        CONTENTS                  TYPE
 ADVERTISE        AD_ID                 Advertise id              int(11)
                  PROP_ID               Property id               int(11)
                  OUTLET_ID             Outlet id                 int(11)
                  AD_COST               Advertise cost            float
                  AD_DATE               Advertise date            date

 AGENCY           AGENCY_ID             Agency id                 int(11)
                  AGENCY_NAME           Agency name               varchar(45)
                  AGENCY_PHONE          Agency phone              bigint(20)

 AREA             AREA_CODE             Area code                 varchar(20)
                  AREA_NAME             Area name                 varchar(45)
                  AREA_COMMENTS         Area comments             varchar(200)

 BUY_SELL         TRAN_ID               Transaction id            int(11)
                  PROP_ID               Property id               int(11)
                  BUYER_ID              Buyer id                  int(11)
                  SELLER_ID             Seller id                 int(11)

 BUYER            BUYER_ID              Buyer id                  int(11)

 CLIENT           CLIENT_ID           Client id                   int(11)
                  CLIENT_FNAME        Client first name           varchar(45)
                  CLIENT_LNAME        Client last name            varchar(45)
                  CLIENT_MIDDLE_INITIAL lient middle initial
                                      C                           varchar(5)
                  CLIENT_PHONE        Client phone number         bigint(20)
                  CLIENT_EMAIL        Client email address        varchar(65)

 CONDOMINIUM      PROP_ID               Condominium property id   int(11)
                  MONTHLY_FEE           Condominium monthly fee   float

 OUTLET           OUTLET_ID             Outlet id                 int(11)
                  OUTLET_NAME           Outlet name               varchar(45)
                  OUTLET_PHONE          Outlet phone              bigint(20)
                  OUTLET_TYPE           Outlet type               varchar(45)

 PROPERTY         PROP_ID               Property id               int(11)
                  PROP_STREET           Propert street            varchar(45)
                  PROP_CITY             Property city             varchar(45)
                  PROP_STATE            Property state            char(2)
                  AREA_CODE             Area code                 varchar(20)
                  AGENCY_ID             Agency id                 int(11)
                  PROP_BEDROOM          Property bedroom          int(11)
PROP_BATHROOM   Property bathroom           int(11)
                PROP_PRICE      Property price              float


REFERRAL        REFERRAL_ID     Referral id                 int(11)
                CLIENT_ID       Client id                   int(11)
                TRAN_ID         Transaction id              int(11)
                REFERRAL_FEE    Referral fee                float

SCHOOL          SCHOOL_ID       School id                   int(11)
                SCHOOL_NAME     School name                 varchar(100)
                SCHOOL_TYPE     School type                 varchar(45)
                AREA_CODE       Area code                   varchar(20)

SELLER          CLIENT_ID       Seller client id            int(11)

SINGLE_FAMILY   PROP_ID         Single family property id   int(11)
                LOT_SIZE        Single family lot size      varchar(45)
REQUIRED   PK or FK   Default   Extra
NO         PRI        NULL
YES        MUL        NULL
YES        MUL        NULL
YES                   NULL
YES                   NULL

NO         PRI        NULL
YES                   NULL
YES                   NULL

NO         PRI        NULL
YES                   NULL
YES                   NULL

NO         PRI        NULL
YES        MUL        NULL
YES        MUL        NULL
YES        MUL        NULL

YES        MUL        NULL

NO         PRI        NULL
YES                   NULL
YES                   NULL
YES                   NULL
YES                   NULL
YES                   NULL

NO         PRI        NULL
YES                   NULL

NO         PRI        NULL
YES                   NULL
YES                   NULL
YES                   NULL

NO         PRI        NULL
YES                   NULL
YES                   NULL
YES                   NULL
YES        MUL        NULL
YES        MUL        NULL
YES                   NULL
YES         NULL
YES         NULL


NO    PRI   NULL
YES   MUL   NULL
YES   MUL   NULL
YES         NULL

NO    PRI   NULL
YES         NULL
YES         NULL
YES   MUL   NULL

NO    PRI   NULL

NO    PRI   NULL
YES         NULL
TABLE NAME    ATTRIBUTE NAME      CONTENTS   TYPE       REQUIRED PK or FK   Default
ADVERTISE     AD_ID                          int(11)    NO       PRI        NULL
              PROP_ID                        int(11)    YES      MUL        NULL
              OUTLET_ID                      int(11)    YES      MUL        NULL
              AD_COST                        float      YES                 NULL
              AD_DATE                        date       YES                 NULL


AGENCY        Field                          Type       Null     Key        Default
              AGENCY_ID                      int(11)    NO       PRI        NULL
              AGENCY_NAME                    varchar(45)YES                 NULL
              AGENCY_PHONE                   bigint(20) YES                 NULL


AREA          Field                          Type       Null     Key        Default
              AREA_CODE                      varchar(20)NO       PRI        NULL
              AREA_NAME                      varchar(45)YES                 NULL
              AREA_COMMENTS                  varchar(200)
                                                        YES                 NULL

SELL          Field                          Type       Null     Key        Default
              TRAN_ID                        int(11)    NO       PRI        NULL
              PROP_ID                        int(11)    YES      MUL        NULL
              BUYER_ID                       int(11)    YES      MUL        NULL
              SELLER_ID                      int(11)    YES      MUL        NULL

BUYER         Field                          Type       Null     Key        Default
              TRAN_ID                        int(11)    NO       PRI        NULL
              PROP_ID                        int(11)    YES      MUL        NULL
              BUYER_ID                       int(11)    YES      MUL        NULL
              SELLER_ID                      int(11)    YES      MUL        NULL


CLIENT        Field                          Type       Null     Key        Default
              CLIENT_ID                      int(11)    NO       PRI        NULL
              CLIENT_FNAME                   varchar(45)YES                 NULL
              CLIENT_LNAME                   varchar(45)YES                 NULL
              CLIENT_MIDDLE_INITIAL          varchar(5) YES                 NULL
              CLIENT_PHONE                   bigint(20) YES                 NULL
              CLIENT_EMAIL                   varchar(65)YES                 NULL

CONDOMINIUM   Field                          Type       Null     Key        Default
              PROP_ID                        int(11)    NO       PRI        NULL
              MONTHLY_FEE                    float      YES                 NULL

OUTLET        Field                          Type       Null     Key        Default
              OUTLET_ID                      int(11)    NO       PRI        NULL
OUTLET_NAME     varchar(45)YES          NULL
                OUTLET_PHONE    bigint(20) YES          NULL
                OUTLET_TYPE     varchar(45)YES          NULL

PROPERTY        Field           Type       Null   Key   Default
                PROP_ID         int(11)    NO     PRI   NULL
                PROP_STREET     varchar(45)YES          NULL
                PROP_CITY       varchar(45)YES          NULL
                PROP_STATE      char(2)    YES          NULL
                AREA_CODE       varchar(20)YES    MUL   NULL
                AGENCY_ID       int(11)    YES    MUL   NULL
                PROP_BEDROOM    int(11)    YES          NULL
                PROP_BATHROOM   int(11)    YES          NULL
                PROP_PRICE      float      YES          NULL


REFERRAL        Field           Type       Null   Key   Default
                REFERRAL_ID     int(11)    NO     PRI   NULL
                CLIENT_ID       int(11)    YES    MUL   NULL
                TRAN_ID         int(11)    YES    MUL   NULL
                REFERRAL_FEE    float      YES          NULL

SCHOOL          Field           Type       Null   Key   Default
                SCHOOL_ID       int(11)    NO     PRI   NULL
                SCHOOL_NAME     varchar(100)
                                           YES          NULL
                SCHOOL_TYPE     varchar(45)YES          NULL
                AREA_CODE       varchar(20)YES    MUL   NULL

SELLER          Field           Type       Null   Key   Default
                CLIENT_ID       int(11)    NO     PRI   NULL


SINGLE_FAMILY   Field           Type       Null   Key   Default
                PROP_ID         int(11)    NO     PRI   NULL
                LOT_SIZE        varchar(45)YES          NULL
Extra




Extra




Extra




Extra




Extra




Extra




Extra




Extra
Extra




Extra




Extra




Extra




Extra

More Related Content

Viewers also liked (7)

PPTX
What is a DATA DICTIONARY?
Leela Vasundara D K
 
PPTX
Benefits of data visualization
infographic_art
 
PPTX
Systems Analyst and Design - Data Dictionary
Kimberly Coquilla
 
PDF
SAP ABAP data dictionary
Revanth Nagaraju
 
PDF
Fundamental Ways We Use Data Visualizations
Initial State
 
PPT
Flowchart
HRdebajit
 
PPTX
Elisa
amitgajjar85
 
What is a DATA DICTIONARY?
Leela Vasundara D K
 
Benefits of data visualization
infographic_art
 
Systems Analyst and Design - Data Dictionary
Kimberly Coquilla
 
SAP ABAP data dictionary
Revanth Nagaraju
 
Fundamental Ways We Use Data Visualizations
Initial State
 
Flowchart
HRdebajit
 

More from jandrewsxu (20)

DOCX
Resume
jandrewsxu
 
DOCX
Resume
jandrewsxu
 
DOCX
Chapter #11 lab
jandrewsxu
 
DOCX
Chapter #8 lab
jandrewsxu
 
DOCX
Chapter #4 lab
jandrewsxu
 
DOCX
Modulation schemes 8
jandrewsxu
 
DOCX
Modulation techniques 7
jandrewsxu
 
DOCX
Bluetooth wi fi wi max 2, 3
jandrewsxu
 
DOCX
Acsg 520 assignment #6 ---
jandrewsxu
 
DOCX
Acsg 520 assignment #4 --
jandrewsxu
 
DOCX
First hw assignment #1 --
jandrewsxu
 
DOC
Journal
jandrewsxu
 
DOC
Assumptions, applicable measures, er diagram
jandrewsxu
 
DOC
Assumptions, and applicable measures
jandrewsxu
 
PPTX
Final presentation(v5)
jandrewsxu
 
DOC
Database chapter 11 homework
jandrewsxu
 
DOC
Database chapter 10 questions
jandrewsxu
 
DOC
Essay #2 ethical considerations
jandrewsxu
 
DOC
Midterm paper medical records
jandrewsxu
 
DOC
Essay #2 ethical considerations
jandrewsxu
 
Resume
jandrewsxu
 
Resume
jandrewsxu
 
Chapter #11 lab
jandrewsxu
 
Chapter #8 lab
jandrewsxu
 
Chapter #4 lab
jandrewsxu
 
Modulation schemes 8
jandrewsxu
 
Modulation techniques 7
jandrewsxu
 
Bluetooth wi fi wi max 2, 3
jandrewsxu
 
Acsg 520 assignment #6 ---
jandrewsxu
 
Acsg 520 assignment #4 --
jandrewsxu
 
First hw assignment #1 --
jandrewsxu
 
Journal
jandrewsxu
 
Assumptions, applicable measures, er diagram
jandrewsxu
 
Assumptions, and applicable measures
jandrewsxu
 
Final presentation(v5)
jandrewsxu
 
Database chapter 11 homework
jandrewsxu
 
Database chapter 10 questions
jandrewsxu
 
Essay #2 ethical considerations
jandrewsxu
 
Midterm paper medical records
jandrewsxu
 
Essay #2 ethical considerations
jandrewsxu
 
Ad

Recently uploaded (20)

PDF
Using Innovative Solar Manufacturing to Drive India's Renewable Energy Revolu...
Insolation Energy
 
DOCX
India's Emerging Global Leadership in Sustainable Energy Production The Rise ...
Insolation Energy
 
PDF
NewBase 24 July 2025 Energy News issue - 1805 by Khaled Al Awadi._compressed...
Khaled Al Awadi
 
PDF
Top 10 Corporates in India Investing in Sustainable Energy.pdf
Essar Group
 
PDF
🚀 Mohit Bansal_ Driving Urban Evolution Through GMI Infra (1).pdf
Mohit Bansal GMI
 
PDF
From Fossil to Future Green Energy Companies Leading India’s Energy Transitio...
Essar Group
 
PPTX
Social Media Marketing for Business Growth
vidhi622006
 
PPTX
The Rise of Artificial Intelligence pptx
divyamarya13
 
PDF
ANÁLISIS DE COSTO- PAUCAR RIVERA NEISY.pdf
neisypaucarr
 
PPTX
PUBLIC RELATIONS N6 slides (4).pptx poin
chernae08
 
PDF
Mentoring_Coaching_Work Readiness Gap_Conference_18 July 2025.pdf
Charles Cotter, PhD
 
PDF
A Study on the relationship between International Crude oil prices and the In...
PriyankaKilaniya
 
PDF
Infrastructure and geopolitics.AM.ENG.docx.pdf
Andrea Mennillo
 
PDF
Driving the Energy Transition India’s Top Renewable Energy Solution Providers...
Essar Group
 
PDF
Retinal Disorder Treatment Market 2030: The Impact of Advanced Diagnostics an...
Kumar Satyam
 
PPTX
The Ultimate Guide to Customer Journey Mapping
RUPAL AGARWAL
 
PPTX
FINAL _ DB x Forrester x Workday Webinar Buying Groups July 2025 (1).pptx
smarvin1
 
PPTX
Integrative Negotiation: Expanding the Pie
badranomar1990
 
PDF
A Study on Analysing the Financial Performance of AU Small Finance and Ujjiva...
AI Publications
 
PDF
New Royals Distribution Plan Presentation
ksherwin
 
Using Innovative Solar Manufacturing to Drive India's Renewable Energy Revolu...
Insolation Energy
 
India's Emerging Global Leadership in Sustainable Energy Production The Rise ...
Insolation Energy
 
NewBase 24 July 2025 Energy News issue - 1805 by Khaled Al Awadi._compressed...
Khaled Al Awadi
 
Top 10 Corporates in India Investing in Sustainable Energy.pdf
Essar Group
 
🚀 Mohit Bansal_ Driving Urban Evolution Through GMI Infra (1).pdf
Mohit Bansal GMI
 
From Fossil to Future Green Energy Companies Leading India’s Energy Transitio...
Essar Group
 
Social Media Marketing for Business Growth
vidhi622006
 
The Rise of Artificial Intelligence pptx
divyamarya13
 
ANÁLISIS DE COSTO- PAUCAR RIVERA NEISY.pdf
neisypaucarr
 
PUBLIC RELATIONS N6 slides (4).pptx poin
chernae08
 
Mentoring_Coaching_Work Readiness Gap_Conference_18 July 2025.pdf
Charles Cotter, PhD
 
A Study on the relationship between International Crude oil prices and the In...
PriyankaKilaniya
 
Infrastructure and geopolitics.AM.ENG.docx.pdf
Andrea Mennillo
 
Driving the Energy Transition India’s Top Renewable Energy Solution Providers...
Essar Group
 
Retinal Disorder Treatment Market 2030: The Impact of Advanced Diagnostics an...
Kumar Satyam
 
The Ultimate Guide to Customer Journey Mapping
RUPAL AGARWAL
 
FINAL _ DB x Forrester x Workday Webinar Buying Groups July 2025 (1).pptx
smarvin1
 
Integrative Negotiation: Expanding the Pie
badranomar1990
 
A Study on Analysing the Financial Performance of AU Small Finance and Ujjiva...
AI Publications
 
New Royals Distribution Plan Presentation
ksherwin
 
Ad

Data dictionary

  • 1. DATA DICTIONARY Group1 TABLE NAME ATTRIBUTE NAME CONTENTS TYPE ADVERTISE AD_ID Advertise id int(11) PROP_ID Property id int(11) OUTLET_ID Outlet id int(11) AD_COST Advertise cost float AD_DATE Advertise date date AGENCY AGENCY_ID Agency id int(11) AGENCY_NAME Agency name varchar(45) AGENCY_PHONE Agency phone bigint(20) AREA AREA_CODE Area code varchar(20) AREA_NAME Area name varchar(45) AREA_COMMENTS Area comments varchar(200) BUY_SELL TRAN_ID Transaction id int(11) PROP_ID Property id int(11) BUYER_ID Buyer id int(11) SELLER_ID Seller id int(11) BUYER BUYER_ID Buyer id int(11) CLIENT CLIENT_ID Client id int(11) CLIENT_FNAME Client first name varchar(45) CLIENT_LNAME Client last name varchar(45) CLIENT_MIDDLE_INITIAL lient middle initial C varchar(5) CLIENT_PHONE Client phone number bigint(20) CLIENT_EMAIL Client email address varchar(65) CONDOMINIUM PROP_ID Condominium property id int(11) MONTHLY_FEE Condominium monthly fee float OUTLET OUTLET_ID Outlet id int(11) OUTLET_NAME Outlet name varchar(45) OUTLET_PHONE Outlet phone bigint(20) OUTLET_TYPE Outlet type varchar(45) PROPERTY PROP_ID Property id int(11) PROP_STREET Propert street varchar(45) PROP_CITY Property city varchar(45) PROP_STATE Property state char(2) AREA_CODE Area code varchar(20) AGENCY_ID Agency id int(11) PROP_BEDROOM Property bedroom int(11)
  • 2. PROP_BATHROOM Property bathroom int(11) PROP_PRICE Property price float REFERRAL REFERRAL_ID Referral id int(11) CLIENT_ID Client id int(11) TRAN_ID Transaction id int(11) REFERRAL_FEE Referral fee float SCHOOL SCHOOL_ID School id int(11) SCHOOL_NAME School name varchar(100) SCHOOL_TYPE School type varchar(45) AREA_CODE Area code varchar(20) SELLER CLIENT_ID Seller client id int(11) SINGLE_FAMILY PROP_ID Single family property id int(11) LOT_SIZE Single family lot size varchar(45)
  • 3. REQUIRED PK or FK Default Extra NO PRI NULL YES MUL NULL YES MUL NULL YES NULL YES NULL NO PRI NULL YES NULL YES NULL NO PRI NULL YES NULL YES NULL NO PRI NULL YES MUL NULL YES MUL NULL YES MUL NULL YES MUL NULL NO PRI NULL YES NULL YES NULL YES NULL YES NULL YES NULL NO PRI NULL YES NULL NO PRI NULL YES NULL YES NULL YES NULL NO PRI NULL YES NULL YES NULL YES NULL YES MUL NULL YES MUL NULL YES NULL
  • 4. YES NULL YES NULL NO PRI NULL YES MUL NULL YES MUL NULL YES NULL NO PRI NULL YES NULL YES NULL YES MUL NULL NO PRI NULL NO PRI NULL YES NULL
  • 5. TABLE NAME ATTRIBUTE NAME CONTENTS TYPE REQUIRED PK or FK Default ADVERTISE AD_ID int(11) NO PRI NULL PROP_ID int(11) YES MUL NULL OUTLET_ID int(11) YES MUL NULL AD_COST float YES NULL AD_DATE date YES NULL AGENCY Field Type Null Key Default AGENCY_ID int(11) NO PRI NULL AGENCY_NAME varchar(45)YES NULL AGENCY_PHONE bigint(20) YES NULL AREA Field Type Null Key Default AREA_CODE varchar(20)NO PRI NULL AREA_NAME varchar(45)YES NULL AREA_COMMENTS varchar(200) YES NULL SELL Field Type Null Key Default TRAN_ID int(11) NO PRI NULL PROP_ID int(11) YES MUL NULL BUYER_ID int(11) YES MUL NULL SELLER_ID int(11) YES MUL NULL BUYER Field Type Null Key Default TRAN_ID int(11) NO PRI NULL PROP_ID int(11) YES MUL NULL BUYER_ID int(11) YES MUL NULL SELLER_ID int(11) YES MUL NULL CLIENT Field Type Null Key Default CLIENT_ID int(11) NO PRI NULL CLIENT_FNAME varchar(45)YES NULL CLIENT_LNAME varchar(45)YES NULL CLIENT_MIDDLE_INITIAL varchar(5) YES NULL CLIENT_PHONE bigint(20) YES NULL CLIENT_EMAIL varchar(65)YES NULL CONDOMINIUM Field Type Null Key Default PROP_ID int(11) NO PRI NULL MONTHLY_FEE float YES NULL OUTLET Field Type Null Key Default OUTLET_ID int(11) NO PRI NULL
  • 6. OUTLET_NAME varchar(45)YES NULL OUTLET_PHONE bigint(20) YES NULL OUTLET_TYPE varchar(45)YES NULL PROPERTY Field Type Null Key Default PROP_ID int(11) NO PRI NULL PROP_STREET varchar(45)YES NULL PROP_CITY varchar(45)YES NULL PROP_STATE char(2) YES NULL AREA_CODE varchar(20)YES MUL NULL AGENCY_ID int(11) YES MUL NULL PROP_BEDROOM int(11) YES NULL PROP_BATHROOM int(11) YES NULL PROP_PRICE float YES NULL REFERRAL Field Type Null Key Default REFERRAL_ID int(11) NO PRI NULL CLIENT_ID int(11) YES MUL NULL TRAN_ID int(11) YES MUL NULL REFERRAL_FEE float YES NULL SCHOOL Field Type Null Key Default SCHOOL_ID int(11) NO PRI NULL SCHOOL_NAME varchar(100) YES NULL SCHOOL_TYPE varchar(45)YES NULL AREA_CODE varchar(20)YES MUL NULL SELLER Field Type Null Key Default CLIENT_ID int(11) NO PRI NULL SINGLE_FAMILY Field Type Null Key Default PROP_ID int(11) NO PRI NULL LOT_SIZE varchar(45)YES NULL