Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Why do they insist on repeating the name of the table in the column name?

Why do they insist on repeating the name of the table in the column name?

Scheduled Pinned Locked Moved The Lounge
databasedesignquestion
84 Posts 32 Posters 10 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Worried Brown Eyes

    Eddy Vluggen wrote:

    ..worse are the people who add the text "table" to a tablename

    Sometimes coupled with each field starting fld_ I'm fairly certain I had to work with something like tbl_Customer.fld_CustomerId in Access back in the nineties. Regards, Stewart

    L Offline
    L Offline
    Lost User
    wrote on last edited by
    #20

    Yeah, Access gets confused if you don't tell it which is the table and which the field. I imagine it would try to read the table "Customer" from the field "Customer" if it's not told using a nice prefix which kind of object were talking about :suss:

    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] They hate us for our freedom![^]

    1 Reply Last reply
    0
    • G Gary Huck

      With regard to database design: Is it just me or are there others out there who are driven nuts by repeating the table name in the column name. E.g., I see things like Widget_Attribute_Type.Widget_Attribute_Type_Id all the time when all that is needed is Widget_Attribute_Type.Id. Seems when I debate this with the DBA types and architects they use the same [similar] tired arguments.

      V Offline
      V Offline
      Vivi Chellappa
      wrote on last edited by
      #21

      Because they are clueless retards.

      G 1 Reply Last reply
      0
      • T tgrt

        You're talking about something different. The second query would be:

        SELECT *
        FROM Employee e
        JOIN Department d ON d.DepartmentId = e.DepartmentId

        I'm leaving the asterisk for the sake of brevity.

        K Offline
        K Offline
        Keith Barrow
        wrote on last edited by
        #22

        As opposed to the obscure:

        SELECT *
        FROM Employee
        JOIN Department ON Department.Id = DepartmentId

        Assuming Employee has an ID field (if not, the department. is redundant) or even the following, which is totally unambiguous:

        SELECT *
        FROM Employee
        JOIN Department ON Department.Id = Employee.DepartmentId

        Sort of a cross between Lawrence of Arabia and Dilbert.[^]
        -Or-
        A Dead ringer for Kate Winslett[^]

        1 Reply Last reply
        0
        • W Worried Brown Eyes

          Eddy Vluggen wrote:

          ..worse are the people who add the text "table" to a tablename

          Sometimes coupled with each field starting fld_ I'm fairly certain I had to work with something like tbl_Customer.fld_CustomerId in Access back in the nineties. Regards, Stewart

          K Offline
          K Offline
          Keith Barrow
          wrote on last edited by
          #23

          I think you are making the basic error of confusing Access with a database :)

          Sort of a cross between Lawrence of Arabia and Dilbert.[^]
          -Or-
          A Dead ringer for Kate Winslett[^]

          1 Reply Last reply
          0
          • G Gary Huck

            With regard to database design: Is it just me or are there others out there who are driven nuts by repeating the table name in the column name. E.g., I see things like Widget_Attribute_Type.Widget_Attribute_Type_Id all the time when all that is needed is Widget_Attribute_Type.Id. Seems when I debate this with the DBA types and architects they use the same [similar] tired arguments.

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #24

            Two things I hate in column names: 1: Underscores 2: Abbreviations #1: I hate underscores because Account_Number isn't any easier to read than AccountNumber. Also, they are used inconsistently and add unneccessary length to column names. It really is a habit that needs to stop immediately. #2: I hate abbreviations in column names because it only causes confusion and doesn't really save any time/effort. In fact, it adds to the time it takes to maintain a database. Clarity should win out over saving the time it takes to type a couple of letters. The beauty is when you combine #1 & #2 to create mass confusion that saves nothing. For example: Acct_No Accout_Num Acc_Nbr Acct_Num I've seen several variations on AccountNumber within the same database because each and every administrator has his/her own clever take on using underscores and abbreviations. They all know they are expressing the phrase 'AccountNumber' but each of them uses a variation on a ridiculous naming convention. Of course, one day I'll be an administrator so I'll add my own variations a few days before I retire: A_cct_No_mber Ac____nt_NUMber Ac_WTF?_Number -MehGerbil

            C B U 3 Replies Last reply
            0
            • E Ennis Ray Lynch Jr

              My personal preference:

              create table customer
              id,
              name,
              dateOfBirth, etc

              I have a real preference for 4th normal because I don't like null checks in code, The down side is a less natural object model. For foreign keys:

              create table order
              id,
              customerId,
              etc

              It is actually, kind of funny, my rationalization for the Id. Code commonality. As far as the DB is concerned consistent trumps any rationalization but when it comes to writing code, writing less code is better. If Id is always the key value there are a lot of interfaces and base classes that can be written to support that. (No, I don't use code generators) [Yes, I know they can save a lot of time; yet I have never missed a dead-line because of DAL code--I am just that good] My real and true db pet peeve, however, is people that Alias all table names. There are cases for aliasing, sub-query joins, multiple joins on the same table, name too long, but to alias just to save typing significantly reduces the readability of the query. Consider:

              select o.id,c.id, /*notice here one of the reasons some people use table name?*/,
              l.id,c.name, op.method from order o,customer c, lineItem l, orderPayemnt op
              where o.customterId=c.id and l.orderId=o.id and op.orderId=o.id

              vs:

              select
              order.id orderId,
              customer.id customerId,
              lineItem.id lineItemId,
              customer.name,
              orderPayment.method
              FROM
              customer
              JOIN order ON
              order.customerId = customer.Id
              JOIN lineItem ON
              lineItem.orderId = order.id
              JOIN orderPayment ON
              orderPayment.orderId = order.id

              With the expense of a few extra key strokes, every one and their mother can read and modify the query.

              Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch

              P Offline
              P Offline
              Phil J Pearson
              wrote on last edited by
              #25

              Why would you want people's mothers to modify the query?? You just spoiled a good argument! ;P

              Phil


              The opinions expressed in this post are not necessarily those of the author, especially if you find them impolite, inaccurate or inflammatory.

              P 1 Reply Last reply
              0
              • V Vivi Chellappa

                Because they are clueless retards.

                G Offline
                G Offline
                Gary Huck
                wrote on last edited by
                #26

                :)

                1 Reply Last reply
                0
                • L Lost User

                  I hate it when they do that on objects: Customer.CustomerCatagory Customer.CustomerType Why not just Customer.Catagory? Why not just Customer.Type?

                  P Offline
                  P Offline
                  Phil J Pearson
                  wrote on last edited by
                  #27

                  MehGerbil wrote:

                  Why not just Customer.Catagory?

                  Because misspelled column names are even worse than overly long ones! ;P

                  Phil


                  The opinions expressed in this post are not necessarily those of the author, especially if you find them impolite, inaccurate or inflammatory.

                  L 1 Reply Last reply
                  0
                  • L Lost User

                    How is that more clear than without the table-name?

                    SELECT *
                    FROM Employee e
                    JOIN Department d ON d.DepartmentId = e.DepartmentId

                    SELECT *
                    FROM Employee e
                    JOIN Department d ON d.Id = e.fk_Department

                    One does not repeat the name of the table where the fk originates from; it's very confusing to have a foreign key that always consists of a table-name and id if you have multiple references to the same table;

                    SELECT *
                    FROM Humans h
                    JOIN Human hf ON h.fk_father = h.Id
                    JOIN Human hm ON h.fk_mother = h.Id

                    It's also kinda easy to have each primary key named "Id", and it keeps it readable, even for large structures. The foreign key should have a descriptive name - not just a concatenation of the originating table with the constant "Id". Below is your version;

                    SELECT *
                    FROM Humans h
                    JOIN Human hf ON h.HumanId1 = h.HumanId
                    JOIN Human hm ON h.HumandId2 = h.HumanId

                    Enjoy :)

                    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] They hate us for our freedom![^]

                    B Offline
                    B Offline
                    Bruce Patin
                    wrote on last edited by
                    #28

                    I wouldn't necessarily know from fk_father or fk_mother that the key related to the Human(s) table. I would probably call the fields HumanIdFather and HumanIdMother for clarity. And why do you have a "Humans" table and a "Human" table? I also object to using plurals for table names.

                    E L 2 Replies Last reply
                    0
                    • P Phil J Pearson

                      MehGerbil wrote:

                      Why not just Customer.Catagory?

                      Because misspelled column names are even worse than overly long ones! ;P

                      Phil


                      The opinions expressed in this post are not necessarily those of the author, especially if you find them impolite, inaccurate or inflammatory.

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #29

                      I think I'm all done with this site. The grammar Nazi bot to actual contributor ratio is much too high.

                      P 1 Reply Last reply
                      0
                      • L Lost User

                        I hate it when they do that on objects: Customer.CustomerCatagory Customer.CustomerType Why not just Customer.Catagory? Why not just Customer.Type?

                        B Offline
                        B Offline
                        Bruce Patin
                        wrote on last edited by
                        #30

                        How about Customer.Category? I try not to be a spell checking nuisance, but I really object to incorrectly spelled identifiers in code that gets replicated all over an application that may be maintained by multiple people. It can lead to problems when someone searches for "category" in an application and doesn't find any references to it.

                        L 1 Reply Last reply
                        0
                        • B Bruce Patin

                          I wouldn't necessarily know from fk_father or fk_mother that the key related to the Human(s) table. I would probably call the fields HumanIdFather and HumanIdMother for clarity. And why do you have a "Humans" table and a "Human" table? I also object to using plurals for table names.

                          E Offline
                          E Offline
                          Ennis Ray Lynch Jr
                          wrote on last edited by
                          #31

                          Hey, Oedipus, Kid Sister rule, please : )

                          Bruce Patin wrote:

                          fk_father or fk_mother

                          Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch

                          B 1 Reply Last reply
                          0
                          • B Bruce Patin

                            How about Customer.Category? I try not to be a spell checking nuisance, but I really object to incorrectly spelled identifiers in code that gets replicated all over an application that may be maintained by multiple people. It can lead to problems when someone searches for "category" in an application and doesn't find any references to it.

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #32

                            Like I said in my reply to Phil, you guys win. For those who actually read posts, instead of proof-reading them: Anyone know a tech site where I can hang out, one where the population isn't composed primarily of retired high school English teachers waiting to work through their ennui by targetting people who ignored their lessons and went on in life to be successful anyways? I'm sure I spelled something in there wrong - or perhaps confused a verb tense or something. Why don't you guys discuss it?

                            B B 2 Replies Last reply
                            0
                            • L Lost User

                              How is that more clear than without the table-name?

                              SELECT *
                              FROM Employee e
                              JOIN Department d ON d.DepartmentId = e.DepartmentId

                              SELECT *
                              FROM Employee e
                              JOIN Department d ON d.Id = e.fk_Department

                              One does not repeat the name of the table where the fk originates from; it's very confusing to have a foreign key that always consists of a table-name and id if you have multiple references to the same table;

                              SELECT *
                              FROM Humans h
                              JOIN Human hf ON h.fk_father = h.Id
                              JOIN Human hm ON h.fk_mother = h.Id

                              It's also kinda easy to have each primary key named "Id", and it keeps it readable, even for large structures. The foreign key should have a descriptive name - not just a concatenation of the originating table with the constant "Id". Below is your version;

                              SELECT *
                              FROM Humans h
                              JOIN Human hf ON h.HumanId1 = h.HumanId
                              JOIN Human hm ON h.HumandId2 = h.HumanId

                              Enjoy :)

                              Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] They hate us for our freedom![^]

                              T Offline
                              T Offline
                              tgrt
                              wrote on last edited by
                              #33

                              Again you're talking about two different things. A self-reference could require clarification (e.g. FatherHumanId). In my opinion using a fk_ prefix is horrible! The binding is clear when the names match. And that's especially true in a complex enterprise system. Tables and objects are not the same thing. Let's take a slightly more complex example. Student can take many Courses; and a Course can have many Students. You would model that with a simple bridge table. Here's the table contents: Student(StudentId, LastName, FirstName, ...) Course(CourseId, Name, ...) StudentCourse(StudentCourseId, StudentId, CourseId, ...)

                              select s.LastName, s.FirstName, c.Name
                              from Student s
                              join StudentCourse sc on s.StudentId = sc.StudentId
                              join Course c on sc.CourseId = c.CourseId

                              Your method would read like:

                              select s.LastName, s.FirstName, c.Name
                              from Student s
                              join StudentCourse sc on s.Id = sc.fk_Student
                              join Course c on sc.fk_Course = c.Id

                              The second is not nearly as clear and much more prone to error. The first requires no guessing on the naming and the only time it would be different is in special circumstances such as a self-reference (e.g. t2.HumanId = t1.FatherHumanId; a weird example but I'll stick with it since it was your example).

                              B P L 3 Replies Last reply
                              0
                              • R Rama Krishna Vavilala

                                As people have said it makes joins easier and intuitive to figure out what goes where in multi-table joins. Also most reporting tools automatically figure out the related fields if you follow this pattern.

                                N Offline
                                N Offline
                                Nish Nishant
                                wrote on last edited by
                                #34

                                Rama Krishna Vavilala wrote:

                                As people have said it makes joins easier and intuitive to figure out what goes where in multi-table joins.

                                Came here to say this! Knew you'd have said this already when I saw you'd posted. :-) If you use something like EF, the auto-generated properties read better too.

                                Regards, Nish


                                My technology blog: voidnish.wordpress.com

                                1 Reply Last reply
                                0
                                • L Lost User

                                  Like I said in my reply to Phil, you guys win. For those who actually read posts, instead of proof-reading them: Anyone know a tech site where I can hang out, one where the population isn't composed primarily of retired high school English teachers waiting to work through their ennui by targetting people who ignored their lessons and went on in life to be successful anyways? I'm sure I spelled something in there wrong - or perhaps confused a verb tense or something. Why don't you guys discuss it?

                                  B Offline
                                  B Offline
                                  Big Daddy Farang
                                  wrote on last edited by
                                  #35

                                  Deep, cleansing breaths. :-D

                                  BDF I often make very large prints from unexposed film, and every one of them turns out to be a picture of myself as I once dreamed I would be. -- BillWoodruff

                                  1 Reply Last reply
                                  0
                                  • L Lost User

                                    Like I said in my reply to Phil, you guys win. For those who actually read posts, instead of proof-reading them: Anyone know a tech site where I can hang out, one where the population isn't composed primarily of retired high school English teachers waiting to work through their ennui by targetting people who ignored their lessons and went on in life to be successful anyways? I'm sure I spelled something in there wrong - or perhaps confused a verb tense or something. Why don't you guys discuss it?

                                    B Offline
                                    B Offline
                                    Bruce Patin
                                    wrote on last edited by
                                    #36

                                    Sorry. I said I don't like to be a spell-checking nuisance, and wouldn't mention it if it wasn't code, but this matter really has bitten me a few times, after taking over code from someone who couldn't spell.

                                    L 1 Reply Last reply
                                    0
                                    • P Phil J Pearson

                                      Why would you want people's mothers to modify the query?? You just spoiled a good argument! ;P

                                      Phil


                                      The opinions expressed in this post are not necessarily those of the author, especially if you find them impolite, inaccurate or inflammatory.

                                      P Offline
                                      P Offline
                                      PIEBALDconsult
                                      wrote on last edited by
                                      #37

                                      Me: Mrs. Smith, little Jimmy is a an idiot; he says he can't read this SQL statement. Mrs. Smith: Even I can read that; Jimmy you're an idiot.

                                      1 Reply Last reply
                                      0
                                      • E Ennis Ray Lynch Jr

                                        Hey, Oedipus, Kid Sister rule, please : )

                                        Bruce Patin wrote:

                                        fk_father or fk_mother

                                        Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost "All users always want Excel" --Ennis Lynch

                                        B Offline
                                        B Offline
                                        Bruce Patin
                                        wrote on last edited by
                                        #38

                                        Another reason not to prefix column names with fk. ;)

                                        1 Reply Last reply
                                        0
                                        • L Lost User

                                          I think I'm all done with this site. The grammar Nazi bot to actual contributor ratio is much too high.

                                          P Offline
                                          P Offline
                                          Phil J Pearson
                                          wrote on last edited by
                                          #39

                                          People who come here are expected to have some sense of humour. It's always been that way.

                                          Phil


                                          The opinions expressed in this post are not necessarily those of the author, especially if you find them impolite, inaccurate or inflammatory.

                                          L 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups