Can two universities have the same name?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
15
down vote

favorite












I am now developing a database having information about universities. The database has a feature to prevent a duplicate name for the university title. I actually wonder of whether it is possible for 2 universities/colleges to have the same name in one country or different countries.



EDIT:
I am actually not asking to make this database field the unique identifier for my university entries, but rather for preventing potential duplicate of a university when the the data entry guys use the system. I know I can do a quick check on duplicates but I thought to use this Unique attribute if universities have unique names worldwide.







share|improve this question






















  • Comments are not for extended discussion; this conversation has been moved to chat.
    – eykanal♦
    Aug 20 at 17:18














up vote
15
down vote

favorite












I am now developing a database having information about universities. The database has a feature to prevent a duplicate name for the university title. I actually wonder of whether it is possible for 2 universities/colleges to have the same name in one country or different countries.



EDIT:
I am actually not asking to make this database field the unique identifier for my university entries, but rather for preventing potential duplicate of a university when the the data entry guys use the system. I know I can do a quick check on duplicates but I thought to use this Unique attribute if universities have unique names worldwide.







share|improve this question






















  • Comments are not for extended discussion; this conversation has been moved to chat.
    – eykanal♦
    Aug 20 at 17:18












up vote
15
down vote

favorite









up vote
15
down vote

favorite











I am now developing a database having information about universities. The database has a feature to prevent a duplicate name for the university title. I actually wonder of whether it is possible for 2 universities/colleges to have the same name in one country or different countries.



EDIT:
I am actually not asking to make this database field the unique identifier for my university entries, but rather for preventing potential duplicate of a university when the the data entry guys use the system. I know I can do a quick check on duplicates but I thought to use this Unique attribute if universities have unique names worldwide.







share|improve this question














I am now developing a database having information about universities. The database has a feature to prevent a duplicate name for the university title. I actually wonder of whether it is possible for 2 universities/colleges to have the same name in one country or different countries.



EDIT:
I am actually not asking to make this database field the unique identifier for my university entries, but rather for preventing potential duplicate of a university when the the data entry guys use the system. I know I can do a quick check on duplicates but I thought to use this Unique attribute if universities have unique names worldwide.









share|improve this question













share|improve this question




share|improve this question








edited Aug 20 at 0:29

























asked Aug 17 at 7:32









Moayad Abu Rmilah

18116




18116











  • Comments are not for extended discussion; this conversation has been moved to chat.
    – eykanal♦
    Aug 20 at 17:18
















  • Comments are not for extended discussion; this conversation has been moved to chat.
    – eykanal♦
    Aug 20 at 17:18















Comments are not for extended discussion; this conversation has been moved to chat.
– eykanal♦
Aug 20 at 17:18




Comments are not for extended discussion; this conversation has been moved to chat.
– eykanal♦
Aug 20 at 17:18










8 Answers
8






active

oldest

votes

















up vote
24
down vote



accepted










There are a number of Belgian universities which were one institution formerly, but have been split in two independent institutions during the language conflicts between the French and Dutch speaking citizens in the 1960ies. At the moment they in principle still carry the same name, but in the different languages. Examples are the Free Universities of Brussels (Vrije Universiteit Brussel and Université Libre de Bruxelles) or the Catholic Universities of Leuven (Katholieke Universiteit Leuven and Université catholique de Louvain).






share|improve this answer
















  • 6




    In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
    – gerrit
    Aug 17 at 8:54






  • 3




    @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
    – Najib Idrissi
    Aug 17 at 9:00






  • 4




    @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
    – Mast
    Aug 17 at 13:37

















up vote
24
down vote













Yes, for example there is a Heidelberg university in Heidelberg, Germany, and one in Tiffin, Ohio, USA.



Note that non-English names are sometimes rendered inconsistently in English, e.g. Ruprecht-Karls-Universität Heidelberg is sometimes called "University of Heidelberg", sometimes "Heidelberg University" (even on their own website).






share|improve this answer



























    up vote
    14
    down vote













    Yes, two universities can have the same name.



    Many universities are named after the place they're located in.



    Many places in North-America, Australia, and New Zealand are named after places in Europe, in particular after places in Great Britain and Ireland.



    Although I haven't done a complete survey, the chances would seem pretty high that this leads to a collision somewhere.



    As ChristianW, OBu, and user2768 have all correctly pointed out, you should design your database such that a key is designed to be unique, not the university name.






    share|improve this answer



























      up vote
      11
      down vote













      Yes. As another example, many Catholic (or historically Catholic) Universities are named after Saints. For example, there are several "St. Mary's Universities". On a related theme, many colleges have Christianity based names including Trinity College, Christ College, Wesley among others (Thanks to Pedro and Peter for suggesting this).



      Also, it seems "Queens" and "Kings" are popular college/university names.



      Another thing to be careful about is the change of "Colleges" to "Universities". At least in the US, many "Colleges" changed their accreditation to "Universities". On a related note, you may also want to consider historic names versus present, depending upon the purpose of your database.






      share|improve this answer


















      • 3




        Also "Trinity", like Dublin and Cambridge, among others.
        – Pedro Tamaroff
        Aug 17 at 19:11






      • 2




        @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
        – Peter K.
        Aug 17 at 19:55










      • @PedroTamaroff Thanks for the suggestion.
        – Richard Erickson
        Aug 17 at 21:15






      • 2




        @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
        – Jon Custer
        Aug 20 at 17:34






      • 3




        @JonCuster It's ... disappointing that there are more than three of them. ;-)
        – Peter K.
        Aug 20 at 18:21

















      up vote
      4
      down vote













      As far as I can tell, the University of St. Thomas in St. Paul is entirely unrelated to the University of St. Thomas in Houston and they share a name.






      share|improve this answer



























        up vote
        1
        down vote













        There is a Metropolitan State University in Denver CO and another one in Saint Paul MN. They are completely separate. So, yes, two universities can have the same name. As others have recommended, you should use a surrogate primary key in your database design. That is usually a good idea anyway since you don’t know when something that is unique today might become non-unique tomorrow. Plus integer surrogate keys are more efficient in joins than text fields.






        share|improve this answer



























          up vote
          0
          down vote













          Example: There are three unrelated instances of Westminster College, all in the United States.



          Missouri (founded 1851):
          https://www.westminster-mo.edu/



          Pennsylvania (founded 1852):
          http://www.westminster.edu/index.cfm



          Utah (founded 1875):
          https://www.westminstercollege.edu/






          share|improve this answer



























            up vote
            -1
            down vote













            Yes, two university can have the same name. One example is the Indian Institute of Technology, which is located in several places in India.






            share|improve this answer






















            • Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
              – Scientist
              Aug 17 at 14:07






            • 2




              But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
              – 200_success
              Aug 17 at 16:24










            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "415"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2facademia.stackexchange.com%2fquestions%2f115431%2fcan-two-universities-have-the-same-name%23new-answer', 'question_page');

            );

            Post as a guest






























            8 Answers
            8






            active

            oldest

            votes








            8 Answers
            8






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            24
            down vote



            accepted










            There are a number of Belgian universities which were one institution formerly, but have been split in two independent institutions during the language conflicts between the French and Dutch speaking citizens in the 1960ies. At the moment they in principle still carry the same name, but in the different languages. Examples are the Free Universities of Brussels (Vrije Universiteit Brussel and Université Libre de Bruxelles) or the Catholic Universities of Leuven (Katholieke Universiteit Leuven and Université catholique de Louvain).






            share|improve this answer
















            • 6




              In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
              – gerrit
              Aug 17 at 8:54






            • 3




              @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
              – Najib Idrissi
              Aug 17 at 9:00






            • 4




              @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
              – Mast
              Aug 17 at 13:37














            up vote
            24
            down vote



            accepted










            There are a number of Belgian universities which were one institution formerly, but have been split in two independent institutions during the language conflicts between the French and Dutch speaking citizens in the 1960ies. At the moment they in principle still carry the same name, but in the different languages. Examples are the Free Universities of Brussels (Vrije Universiteit Brussel and Université Libre de Bruxelles) or the Catholic Universities of Leuven (Katholieke Universiteit Leuven and Université catholique de Louvain).






            share|improve this answer
















            • 6




              In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
              – gerrit
              Aug 17 at 8:54






            • 3




              @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
              – Najib Idrissi
              Aug 17 at 9:00






            • 4




              @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
              – Mast
              Aug 17 at 13:37












            up vote
            24
            down vote



            accepted







            up vote
            24
            down vote



            accepted






            There are a number of Belgian universities which were one institution formerly, but have been split in two independent institutions during the language conflicts between the French and Dutch speaking citizens in the 1960ies. At the moment they in principle still carry the same name, but in the different languages. Examples are the Free Universities of Brussels (Vrije Universiteit Brussel and Université Libre de Bruxelles) or the Catholic Universities of Leuven (Katholieke Universiteit Leuven and Université catholique de Louvain).






            share|improve this answer












            There are a number of Belgian universities which were one institution formerly, but have been split in two independent institutions during the language conflicts between the French and Dutch speaking citizens in the 1960ies. At the moment they in principle still carry the same name, but in the different languages. Examples are the Free Universities of Brussels (Vrije Universiteit Brussel and Université Libre de Bruxelles) or the Catholic Universities of Leuven (Katholieke Universiteit Leuven and Université catholique de Louvain).







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 17 at 7:55









            silvado

            15.5k15279




            15.5k15279







            • 6




              In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
              – gerrit
              Aug 17 at 8:54






            • 3




              @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
              – Najib Idrissi
              Aug 17 at 9:00






            • 4




              @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
              – Mast
              Aug 17 at 13:37












            • 6




              In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
              – gerrit
              Aug 17 at 8:54






            • 3




              @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
              – Najib Idrissi
              Aug 17 at 9:00






            • 4




              @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
              – Mast
              Aug 17 at 13:37







            6




            6




            In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
            – gerrit
            Aug 17 at 8:54




            In Leuven/Louvain they did not only split off to start their own university, they founded an entire new town, such that there are now two cities Leuven/Louvain each speaking a different language. In a country where signs are only posted in the language of the location of the sign, that must be incredibly confusing.
            – gerrit
            Aug 17 at 8:54




            3




            3




            @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
            – Najib Idrissi
            Aug 17 at 9:00




            @gerrit Well "Louvain" is really called "Louvain-la-Neuve" (New Louvain), so I imagine that on signs they do add the adjective.
            – Najib Idrissi
            Aug 17 at 9:00




            4




            4




            @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
            – Mast
            Aug 17 at 13:37




            @NajibIdrissi You'd hope so, but if their sign making is as bad as their road maintenance (and I've seen some very troublesome sign collections in Belgium), I wouldn't count on it.
            – Mast
            Aug 17 at 13:37










            up vote
            24
            down vote













            Yes, for example there is a Heidelberg university in Heidelberg, Germany, and one in Tiffin, Ohio, USA.



            Note that non-English names are sometimes rendered inconsistently in English, e.g. Ruprecht-Karls-Universität Heidelberg is sometimes called "University of Heidelberg", sometimes "Heidelberg University" (even on their own website).






            share|improve this answer
























              up vote
              24
              down vote













              Yes, for example there is a Heidelberg university in Heidelberg, Germany, and one in Tiffin, Ohio, USA.



              Note that non-English names are sometimes rendered inconsistently in English, e.g. Ruprecht-Karls-Universität Heidelberg is sometimes called "University of Heidelberg", sometimes "Heidelberg University" (even on their own website).






              share|improve this answer






















                up vote
                24
                down vote










                up vote
                24
                down vote









                Yes, for example there is a Heidelberg university in Heidelberg, Germany, and one in Tiffin, Ohio, USA.



                Note that non-English names are sometimes rendered inconsistently in English, e.g. Ruprecht-Karls-Universität Heidelberg is sometimes called "University of Heidelberg", sometimes "Heidelberg University" (even on their own website).






                share|improve this answer












                Yes, for example there is a Heidelberg university in Heidelberg, Germany, and one in Tiffin, Ohio, USA.



                Note that non-English names are sometimes rendered inconsistently in English, e.g. Ruprecht-Karls-Universität Heidelberg is sometimes called "University of Heidelberg", sometimes "Heidelberg University" (even on their own website).







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 17 at 9:16









                fqq

                33918




                33918




















                    up vote
                    14
                    down vote













                    Yes, two universities can have the same name.



                    Many universities are named after the place they're located in.



                    Many places in North-America, Australia, and New Zealand are named after places in Europe, in particular after places in Great Britain and Ireland.



                    Although I haven't done a complete survey, the chances would seem pretty high that this leads to a collision somewhere.



                    As ChristianW, OBu, and user2768 have all correctly pointed out, you should design your database such that a key is designed to be unique, not the university name.






                    share|improve this answer
























                      up vote
                      14
                      down vote













                      Yes, two universities can have the same name.



                      Many universities are named after the place they're located in.



                      Many places in North-America, Australia, and New Zealand are named after places in Europe, in particular after places in Great Britain and Ireland.



                      Although I haven't done a complete survey, the chances would seem pretty high that this leads to a collision somewhere.



                      As ChristianW, OBu, and user2768 have all correctly pointed out, you should design your database such that a key is designed to be unique, not the university name.






                      share|improve this answer






















                        up vote
                        14
                        down vote










                        up vote
                        14
                        down vote









                        Yes, two universities can have the same name.



                        Many universities are named after the place they're located in.



                        Many places in North-America, Australia, and New Zealand are named after places in Europe, in particular after places in Great Britain and Ireland.



                        Although I haven't done a complete survey, the chances would seem pretty high that this leads to a collision somewhere.



                        As ChristianW, OBu, and user2768 have all correctly pointed out, you should design your database such that a key is designed to be unique, not the university name.






                        share|improve this answer












                        Yes, two universities can have the same name.



                        Many universities are named after the place they're located in.



                        Many places in North-America, Australia, and New Zealand are named after places in Europe, in particular after places in Great Britain and Ireland.



                        Although I haven't done a complete survey, the chances would seem pretty high that this leads to a collision somewhere.



                        As ChristianW, OBu, and user2768 have all correctly pointed out, you should design your database such that a key is designed to be unique, not the university name.







                        share|improve this answer












                        share|improve this answer



                        share|improve this answer










                        answered Aug 17 at 8:57









                        gerrit

                        27k10104175




                        27k10104175




















                            up vote
                            11
                            down vote













                            Yes. As another example, many Catholic (or historically Catholic) Universities are named after Saints. For example, there are several "St. Mary's Universities". On a related theme, many colleges have Christianity based names including Trinity College, Christ College, Wesley among others (Thanks to Pedro and Peter for suggesting this).



                            Also, it seems "Queens" and "Kings" are popular college/university names.



                            Another thing to be careful about is the change of "Colleges" to "Universities". At least in the US, many "Colleges" changed their accreditation to "Universities". On a related note, you may also want to consider historic names versus present, depending upon the purpose of your database.






                            share|improve this answer


















                            • 3




                              Also "Trinity", like Dublin and Cambridge, among others.
                              – Pedro Tamaroff
                              Aug 17 at 19:11






                            • 2




                              @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                              – Peter K.
                              Aug 17 at 19:55










                            • @PedroTamaroff Thanks for the suggestion.
                              – Richard Erickson
                              Aug 17 at 21:15






                            • 2




                              @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                              – Jon Custer
                              Aug 20 at 17:34






                            • 3




                              @JonCuster It's ... disappointing that there are more than three of them. ;-)
                              – Peter K.
                              Aug 20 at 18:21














                            up vote
                            11
                            down vote













                            Yes. As another example, many Catholic (or historically Catholic) Universities are named after Saints. For example, there are several "St. Mary's Universities". On a related theme, many colleges have Christianity based names including Trinity College, Christ College, Wesley among others (Thanks to Pedro and Peter for suggesting this).



                            Also, it seems "Queens" and "Kings" are popular college/university names.



                            Another thing to be careful about is the change of "Colleges" to "Universities". At least in the US, many "Colleges" changed their accreditation to "Universities". On a related note, you may also want to consider historic names versus present, depending upon the purpose of your database.






                            share|improve this answer


















                            • 3




                              Also "Trinity", like Dublin and Cambridge, among others.
                              – Pedro Tamaroff
                              Aug 17 at 19:11






                            • 2




                              @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                              – Peter K.
                              Aug 17 at 19:55










                            • @PedroTamaroff Thanks for the suggestion.
                              – Richard Erickson
                              Aug 17 at 21:15






                            • 2




                              @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                              – Jon Custer
                              Aug 20 at 17:34






                            • 3




                              @JonCuster It's ... disappointing that there are more than three of them. ;-)
                              – Peter K.
                              Aug 20 at 18:21












                            up vote
                            11
                            down vote










                            up vote
                            11
                            down vote









                            Yes. As another example, many Catholic (or historically Catholic) Universities are named after Saints. For example, there are several "St. Mary's Universities". On a related theme, many colleges have Christianity based names including Trinity College, Christ College, Wesley among others (Thanks to Pedro and Peter for suggesting this).



                            Also, it seems "Queens" and "Kings" are popular college/university names.



                            Another thing to be careful about is the change of "Colleges" to "Universities". At least in the US, many "Colleges" changed their accreditation to "Universities". On a related note, you may also want to consider historic names versus present, depending upon the purpose of your database.






                            share|improve this answer














                            Yes. As another example, many Catholic (or historically Catholic) Universities are named after Saints. For example, there are several "St. Mary's Universities". On a related theme, many colleges have Christianity based names including Trinity College, Christ College, Wesley among others (Thanks to Pedro and Peter for suggesting this).



                            Also, it seems "Queens" and "Kings" are popular college/university names.



                            Another thing to be careful about is the change of "Colleges" to "Universities". At least in the US, many "Colleges" changed their accreditation to "Universities". On a related note, you may also want to consider historic names versus present, depending upon the purpose of your database.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Aug 17 at 21:15

























                            answered Aug 17 at 13:27









                            Richard Erickson

                            3,47621629




                            3,47621629







                            • 3




                              Also "Trinity", like Dublin and Cambridge, among others.
                              – Pedro Tamaroff
                              Aug 17 at 19:11






                            • 2




                              @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                              – Peter K.
                              Aug 17 at 19:55










                            • @PedroTamaroff Thanks for the suggestion.
                              – Richard Erickson
                              Aug 17 at 21:15






                            • 2




                              @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                              – Jon Custer
                              Aug 20 at 17:34






                            • 3




                              @JonCuster It's ... disappointing that there are more than three of them. ;-)
                              – Peter K.
                              Aug 20 at 18:21












                            • 3




                              Also "Trinity", like Dublin and Cambridge, among others.
                              – Pedro Tamaroff
                              Aug 17 at 19:11






                            • 2




                              @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                              – Peter K.
                              Aug 17 at 19:55










                            • @PedroTamaroff Thanks for the suggestion.
                              – Richard Erickson
                              Aug 17 at 21:15






                            • 2




                              @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                              – Jon Custer
                              Aug 20 at 17:34






                            • 3




                              @JonCuster It's ... disappointing that there are more than three of them. ;-)
                              – Peter K.
                              Aug 20 at 18:21







                            3




                            3




                            Also "Trinity", like Dublin and Cambridge, among others.
                            – Pedro Tamaroff
                            Aug 17 at 19:11




                            Also "Trinity", like Dublin and Cambridge, among others.
                            – Pedro Tamaroff
                            Aug 17 at 19:11




                            2




                            2




                            @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                            – Peter K.
                            Aug 17 at 19:55




                            @PedroTamaroff : Trinity College also exists in Hartford, CT! trincoll.edu
                            – Peter K.
                            Aug 17 at 19:55












                            @PedroTamaroff Thanks for the suggestion.
                            – Richard Erickson
                            Aug 17 at 21:15




                            @PedroTamaroff Thanks for the suggestion.
                            – Richard Erickson
                            Aug 17 at 21:15




                            2




                            2




                            @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                            – Jon Custer
                            Aug 20 at 17:34




                            @PeterK. - and Trinity University in San Antonio, TX just to further confuse things...
                            – Jon Custer
                            Aug 20 at 17:34




                            3




                            3




                            @JonCuster It's ... disappointing that there are more than three of them. ;-)
                            – Peter K.
                            Aug 20 at 18:21




                            @JonCuster It's ... disappointing that there are more than three of them. ;-)
                            – Peter K.
                            Aug 20 at 18:21










                            up vote
                            4
                            down vote













                            As far as I can tell, the University of St. Thomas in St. Paul is entirely unrelated to the University of St. Thomas in Houston and they share a name.






                            share|improve this answer
























                              up vote
                              4
                              down vote













                              As far as I can tell, the University of St. Thomas in St. Paul is entirely unrelated to the University of St. Thomas in Houston and they share a name.






                              share|improve this answer






















                                up vote
                                4
                                down vote










                                up vote
                                4
                                down vote









                                As far as I can tell, the University of St. Thomas in St. Paul is entirely unrelated to the University of St. Thomas in Houston and they share a name.






                                share|improve this answer












                                As far as I can tell, the University of St. Thomas in St. Paul is entirely unrelated to the University of St. Thomas in Houston and they share a name.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Aug 17 at 16:18









                                Azor Ahai

                                3,14211632




                                3,14211632




















                                    up vote
                                    1
                                    down vote













                                    There is a Metropolitan State University in Denver CO and another one in Saint Paul MN. They are completely separate. So, yes, two universities can have the same name. As others have recommended, you should use a surrogate primary key in your database design. That is usually a good idea anyway since you don’t know when something that is unique today might become non-unique tomorrow. Plus integer surrogate keys are more efficient in joins than text fields.






                                    share|improve this answer
























                                      up vote
                                      1
                                      down vote













                                      There is a Metropolitan State University in Denver CO and another one in Saint Paul MN. They are completely separate. So, yes, two universities can have the same name. As others have recommended, you should use a surrogate primary key in your database design. That is usually a good idea anyway since you don’t know when something that is unique today might become non-unique tomorrow. Plus integer surrogate keys are more efficient in joins than text fields.






                                      share|improve this answer






















                                        up vote
                                        1
                                        down vote










                                        up vote
                                        1
                                        down vote









                                        There is a Metropolitan State University in Denver CO and another one in Saint Paul MN. They are completely separate. So, yes, two universities can have the same name. As others have recommended, you should use a surrogate primary key in your database design. That is usually a good idea anyway since you don’t know when something that is unique today might become non-unique tomorrow. Plus integer surrogate keys are more efficient in joins than text fields.






                                        share|improve this answer












                                        There is a Metropolitan State University in Denver CO and another one in Saint Paul MN. They are completely separate. So, yes, two universities can have the same name. As others have recommended, you should use a surrogate primary key in your database design. That is usually a good idea anyway since you don’t know when something that is unique today might become non-unique tomorrow. Plus integer surrogate keys are more efficient in joins than text fields.







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Aug 17 at 20:59









                                        Rich

                                        111




                                        111




















                                            up vote
                                            0
                                            down vote













                                            Example: There are three unrelated instances of Westminster College, all in the United States.



                                            Missouri (founded 1851):
                                            https://www.westminster-mo.edu/



                                            Pennsylvania (founded 1852):
                                            http://www.westminster.edu/index.cfm



                                            Utah (founded 1875):
                                            https://www.westminstercollege.edu/






                                            share|improve this answer
























                                              up vote
                                              0
                                              down vote













                                              Example: There are three unrelated instances of Westminster College, all in the United States.



                                              Missouri (founded 1851):
                                              https://www.westminster-mo.edu/



                                              Pennsylvania (founded 1852):
                                              http://www.westminster.edu/index.cfm



                                              Utah (founded 1875):
                                              https://www.westminstercollege.edu/






                                              share|improve this answer






















                                                up vote
                                                0
                                                down vote










                                                up vote
                                                0
                                                down vote









                                                Example: There are three unrelated instances of Westminster College, all in the United States.



                                                Missouri (founded 1851):
                                                https://www.westminster-mo.edu/



                                                Pennsylvania (founded 1852):
                                                http://www.westminster.edu/index.cfm



                                                Utah (founded 1875):
                                                https://www.westminstercollege.edu/






                                                share|improve this answer












                                                Example: There are three unrelated instances of Westminster College, all in the United States.



                                                Missouri (founded 1851):
                                                https://www.westminster-mo.edu/



                                                Pennsylvania (founded 1852):
                                                http://www.westminster.edu/index.cfm



                                                Utah (founded 1875):
                                                https://www.westminstercollege.edu/







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Aug 17 at 20:20









                                                AegisCruiser

                                                2,20931125




                                                2,20931125




















                                                    up vote
                                                    -1
                                                    down vote













                                                    Yes, two university can have the same name. One example is the Indian Institute of Technology, which is located in several places in India.






                                                    share|improve this answer






















                                                    • Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                      – Scientist
                                                      Aug 17 at 14:07






                                                    • 2




                                                      But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                      – 200_success
                                                      Aug 17 at 16:24














                                                    up vote
                                                    -1
                                                    down vote













                                                    Yes, two university can have the same name. One example is the Indian Institute of Technology, which is located in several places in India.






                                                    share|improve this answer






















                                                    • Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                      – Scientist
                                                      Aug 17 at 14:07






                                                    • 2




                                                      But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                      – 200_success
                                                      Aug 17 at 16:24












                                                    up vote
                                                    -1
                                                    down vote










                                                    up vote
                                                    -1
                                                    down vote









                                                    Yes, two university can have the same name. One example is the Indian Institute of Technology, which is located in several places in India.






                                                    share|improve this answer














                                                    Yes, two university can have the same name. One example is the Indian Institute of Technology, which is located in several places in India.







                                                    share|improve this answer














                                                    share|improve this answer



                                                    share|improve this answer








                                                    edited Aug 17 at 13:04









                                                    henning

                                                    15.5k45583




                                                    15.5k45583










                                                    answered Aug 17 at 13:03









                                                    Gaurav Rathee

                                                    152




                                                    152











                                                    • Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                      – Scientist
                                                      Aug 17 at 14:07






                                                    • 2




                                                      But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                      – 200_success
                                                      Aug 17 at 16:24
















                                                    • Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                      – Scientist
                                                      Aug 17 at 14:07






                                                    • 2




                                                      But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                      – 200_success
                                                      Aug 17 at 16:24















                                                    Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                    – Scientist
                                                    Aug 17 at 14:07




                                                    Welcome to SE Academia. Please consider improving your answer by adding more specific references, e.g. websites and/or addresses. Also please double-check for grammar/spelling.
                                                    – Scientist
                                                    Aug 17 at 14:07




                                                    2




                                                    2




                                                    But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                    – 200_success
                                                    Aug 17 at 16:24




                                                    But that's a common case, and no big deal. People say "IIT Bombay" or "IIT Hyderabad". It's not much different from, say, "UC Berkeley", "UC Los Angeles", etc.
                                                    – 200_success
                                                    Aug 17 at 16:24

















                                                     

                                                    draft saved


                                                    draft discarded















































                                                     


                                                    draft saved


                                                    draft discarded














                                                    StackExchange.ready(
                                                    function ()
                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2facademia.stackexchange.com%2fquestions%2f115431%2fcan-two-universities-have-the-same-name%23new-answer', 'question_page');

                                                    );

                                                    Post as a guest













































































                                                    Comments

                                                    Popular posts from this blog

                                                    What does second last employer means? [closed]

                                                    List of Gilmore Girls characters

                                                    One-line joke