I'm looking at
, and I feel like I know what's going on until I see "PlayersIn" and "Foliage". Foliage is a double-line-bordered attribute because it is multivalued. What does that mean? How does it look in an actual database query? I don't know what the "PlayersIn" dotted-line bordering indicates. Can you please explain what it indicates, and when it is useful? What does it mean, what does a query look like, why is it important, etc.?
dia: in Chen's Notation, what are dot-bordered atts and what are multivalue atts for?
1.7k Views Asked by Wolfpack'08 At
1
There are 1 best solutions below
Related Questions in DATABASE-DESIGN
- Big data with spatial queries/indexing
- Unique hash/index for time interval
- Best practices for creating a huge SQL table
- Database Design: How should I store user's news preferences in MySQL database?
- Is it recommended to use Node.js for an online room booking web application?
- Storing multiple item settings in database
- Which column type for storing the year field in a table with rows of yearly data
- Best way to setup a i8n in a database
- Database normalization for electricity monitoring system
- Database Design: Unique Billing Assocation
- Is it always a bad practice to have circular relationships in your database design
- One column maps to mutiple columns from different table
- Replicating tables within the database
- mysql one translates table vs multiple translate table
- Nosql database design for complex querying
Related Questions in STANDARDS
- Where can I read the ANSI terminal standard?
- C++: digits vs bits?
- Is it okay to have a <!-- comment --> as first line in SVG?
- Why was the ISO module standard for prolog a failure?
- Does Java have builtin ability or standard patterns for static deserialization?
- Address of an instance emplaced to std::vector is invalid
- In EXCEL how do I convert J2000 time value to standard date and military time?
- Translational Limits on Enum Constants
- Undefined behavior on reading object using non-character type when last written using character type
- Standard for software comparison
- C++11 Allocation Requirement on Strings
- Convert double to time_t
- How does the standards committee indicate the status of a paper under consideration?
- Convert double to struct tm
- Is this a valid definition for main()
Related Questions in ERD
- Which normal form does the ER Diagram guarantee?
- relationship between database tables not sharing any foreign key(s) in ERD
- What's diference between entity-relationship and domain-model
- How to represent multi valued subtype in the EERD?
- Ms Visio 2016 does not display attributes when using Entity Relation Diagram
- Is this considered loop in my ERD?
- Add data types ERD
- Database table to keep track of objects
- Is having flag in database better than querying a table every time?
- ERD: Mapping 1:N relationship with attributes to relationship schema
- Is my ER Diagram correct?
- iOS - Many-to-Many data confusion?
- Database normalization and duplication
- How can I make a caption visible in a relationship line in erd MySQL WB 6.0
- ER diagram - design issues
Related Questions in NOTATION
- C++ won't read in scientific notation data from a .txt file
- Java Stack array - Big O notation
- C++/CLI - What does the postfix operator '*' do?
- Big O Notation with Absolute Value?
- Which notation or diagram can I use for description of the functions' structure?
- Pros and cons of: (a == 0) vs (0 == a)
- Is it possible to use notation [] with pointers in C?
- Problems implementing a deque class with output Deque<elements>
- Use a property name stored in a var, dot and bracket notation
- Incorrect page display with arrow notation in PHP
- How to access object property beginning with a number (SyntaxError: Unexpected identifier)
- Comparing time complexities
- Convert string to pitch notation in javascript
- Mathematical notation programming looping for array element assignment, no summation or product
- Solving this recurrence without the master theorem. Backtracking Algorithm
Related Questions in DIA
- Total participation in Dia
- Is there a silent installation mode for Dia on Windows?
- With DIA diagramming program, how to add cardinality notations on relationship lines?
- Are those dia2sql tools sheet-specific?
- dia: in Chen's Notation, what are dot-bordered atts and what are multivalue atts for?
- How can I save my Dia drawing as a custom shape?
- UML in Dia, inherit arrow diagonal?
- What is the Touch UI replacement of xtype tableedit2
- Dia export not satisfactory
- Importing bitmap in Dia
- Any hints on programming Dia with Python extensions?
- How to draw a self-call in Dia?
- Block Dia Diagram Editor from saving backup copies of files
- How can I get the gtk window of a C running program through a python script?
- Underlining in DIA
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
*Important note: the links contain java, but they are .ca websites and therefore likely secure.
Foliageis multi-valued, and I'm still unsure why anyone would want to do that. I read some documentation, here, on Chen Notation, that say: 'You may want to store degrees in a multi-value field, to show that someone has more than one degree, like a BA and an MS.' I don't understand why a foreign key for degree types isn't used with a dependency table,employeeID x degreeID? Maybe because it's less confusing to have only one table? As far as 'foliage' is concerned, I thought, 'Maybe there are many kinds of foliage, and it's unimportant to people. Maybe it's faster to use a multivalue field because joins are not necessary.'As far as the yellow, dot-bordered attribute, it's a
derived attribute. Derived attributes are attributes which can be obtained by parsing other attributes. Sometimes derived attributes are listed for human convenience, it appears. I'm not sure if it's only an issue of elegance, or if this can somehow speed the code up, though.