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

PPT
Clean code - Agile Software Craftsmanship
PPT
P H P Part I, By Kian
PPS
PHP Built-in String Validation Functions
PDF
BASIC C++ PROGRAMMING
PPTX
Presentation2
PPT
208 dataflowdgm
DOCX
Map info data dictionary version 1
ODP
Decision tables
Clean code - Agile Software Craftsmanship
P H P Part I, By Kian
PHP Built-in String Validation Functions
BASIC C++ PROGRAMMING
Presentation2
208 dataflowdgm
Map info data dictionary version 1
Decision tables

Viewers also liked (7)

PPTX
What is a DATA DICTIONARY?
PPTX
Benefits of data visualization
PPTX
Systems Analyst and Design - Data Dictionary
PDF
SAP ABAP data dictionary
PDF
Fundamental Ways We Use Data Visualizations
PPT
Flowchart
PPTX
What is a DATA DICTIONARY?
Benefits of data visualization
Systems Analyst and Design - Data Dictionary
SAP ABAP data dictionary
Fundamental Ways We Use Data Visualizations
Flowchart
Ad

Similar to Data dictionary (20)

PDF
Cust Reg Schema
PPT
EAV in Magento
PPSX
IM01: Business Intelligence
PDF
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
PPTX
SQL Server Development Tools & Processes Using Visual Studio 2010
PDF
Database Schema
PPTX
TechDays Tunisia - Visual Studio & SQL Server, Better Together - Ayman El-Hattab
PDF
社内勉強会:ソーシャルゲームのデータベース設計入門
DOC
Courier cargo management system
PPTX
Online Vegetable Selling project Presentation
PDF
Introducción rápida a SQL
PPTX
Alister Toma - Vancouver Residential Real Estate Developers
PDF
Individual Project ---Yezhou Liang
PDF
MySQL Cheatsheet
PDF
Active Record Relationships: A Ruby on Rails Cheat Sheet
PDF
Oracle 11g PL/SQL notes
PDF
Thu 0940 kutemperor_norman_3_color
PPTX
Mis04
PPT
Mangala Deshpande MySQL0710.ppt
PDF
Explaining the MySQL Explain
Cust Reg Schema
EAV in Magento
IM01: Business Intelligence
SQL FILE FROM MOODLEUSE [master]GO Object Databa.pdf
SQL Server Development Tools & Processes Using Visual Studio 2010
Database Schema
TechDays Tunisia - Visual Studio & SQL Server, Better Together - Ayman El-Hattab
社内勉強会:ソーシャルゲームのデータベース設計入門
Courier cargo management system
Online Vegetable Selling project Presentation
Introducción rápida a SQL
Alister Toma - Vancouver Residential Real Estate Developers
Individual Project ---Yezhou Liang
MySQL Cheatsheet
Active Record Relationships: A Ruby on Rails Cheat Sheet
Oracle 11g PL/SQL notes
Thu 0940 kutemperor_norman_3_color
Mis04
Mangala Deshpande MySQL0710.ppt
Explaining the MySQL Explain
Ad

More from jandrewsxu (20)

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

Recently uploaded (20)

PDF
How to Get Business Funding for Small Business Fast
PDF
Ôn tập tiếng anh trong kinh doanh nâng cao
PPTX
Amazon (Business Studies) management studies
PDF
Unit 1 Cost Accounting - Cost sheet
PPT
Lecture 3344;;,,(,(((((((((((((((((((((((
PDF
Tata consultancy services case study shri Sharda college, basrur
PDF
Laughter Yoga Basic Learning Workshop Manual
PDF
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
PPTX
job Avenue by vinith.pptxvnbvnvnvbnvbnbmnbmbh
PDF
Reconciliation AND MEMORANDUM RECONCILATION
PDF
Daniels 2024 Inclusive, Sustainable Development
PDF
Power and position in leadershipDOC-20250808-WA0011..pdf
PDF
NISM Series V-A MFD Workbook v December 2024.khhhjtgvwevoypdnew one must use ...
PPTX
3. HISTORICAL PERSPECTIVE UNIIT 3^..pptx
PPTX
Lecture (1)-Introduction.pptx business communication
PPTX
New Microsoft PowerPoint Presentation - Copy.pptx
PPTX
HR Introduction Slide (1).pptx on hr intro
PDF
Cours de Système d'information about ERP.pdf
PDF
Deliverable file - Regulatory guideline analysis.pdf
PDF
COST SHEET- Tender and Quotation unit 2.pdf
How to Get Business Funding for Small Business Fast
Ôn tập tiếng anh trong kinh doanh nâng cao
Amazon (Business Studies) management studies
Unit 1 Cost Accounting - Cost sheet
Lecture 3344;;,,(,(((((((((((((((((((((((
Tata consultancy services case study shri Sharda college, basrur
Laughter Yoga Basic Learning Workshop Manual
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
job Avenue by vinith.pptxvnbvnvnvbnvbnbmnbmbh
Reconciliation AND MEMORANDUM RECONCILATION
Daniels 2024 Inclusive, Sustainable Development
Power and position in leadershipDOC-20250808-WA0011..pdf
NISM Series V-A MFD Workbook v December 2024.khhhjtgvwevoypdnew one must use ...
3. HISTORICAL PERSPECTIVE UNIIT 3^..pptx
Lecture (1)-Introduction.pptx business communication
New Microsoft PowerPoint Presentation - Copy.pptx
HR Introduction Slide (1).pptx on hr intro
Cours de Système d'information about ERP.pdf
Deliverable file - Regulatory guideline analysis.pdf
COST SHEET- Tender and Quotation unit 2.pdf

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