How to determine if a hyphen (-) exists inside a columnAlternatives to LIKE and FTS for mid name searchIndexing strategy for dynamic predicateQuery to match exact column or partial data of the column: SQL Server / AzurePerforming search on a column by queryPerform regex search queries of a text column in table of 100+ million using regexDoes there exist a way to determine the exact file that contains an allocation unit in a filegroup of multiple files?How long does it take a full text index to update after inserting a large amount of text?Substring without the first n charactersCan't import flat file into SqlServerSearching for and parsing out specific text parts within the values of a column

How can I get an unreasonable manager to approve time off?

Where Mongol herds graze

Overlapping String-Blocks

Déjà vu, again?

Why is one of Madera Municipal's runways labelled with only "R" on both sides?

Were Alexander the Great and Hephaestion lovers?

Why is the tail group of virtually every airplane swept instead of straight?

How to forge a multi-part weapon?

Share calendar details request from manager's manager

Why would future John risk sending back a T-800 to save his younger self?

Is it possible to 'live off the sea'

A curious prime counting approximation or just data overfitting?

What to do when surprise and a high initiative roll conflict with the narrative?

Should I avoid hard-packed crusher dust trails with my hybrid?

How can "научись" mean "take it and keep trying"?

Find the limit of a multiplying term function when n tends to infinity.

Would the US government be able to hold control if all electronics were disabled for an indefinite amount of time?

Logarithm of exponential

Fixing obscure 8080 emulator bug?

Is using haveibeenpwned to validate password strength rational?

Why was the Sega Genesis marketed as a 16-bit console?

Should I give professor gift at the beginning of my PhD?

What is the highest possible permanent AC at character creation?

Thread Pool C++ Implementation



How to determine if a hyphen (-) exists inside a column


Alternatives to LIKE and FTS for mid name searchIndexing strategy for dynamic predicateQuery to match exact column or partial data of the column: SQL Server / AzurePerforming search on a column by queryPerform regex search queries of a text column in table of 100+ million using regexDoes there exist a way to determine the exact file that contains an allocation unit in a filegroup of multiple files?How long does it take a full text index to update after inserting a large amount of text?Substring without the first n charactersCan't import flat file into SqlServerSearching for and parsing out specific text parts within the values of a column






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















In a CASE expression, I'm trying to search inside a text column to identify a hyphen (-):



CASE 
WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7')
AND al.NEW_ADDRESS CONTAINS '-'
THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


The hyphen can be located anywhere in the column, and so I just need to know if it exists, regardless of where it actually is in the column.



I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).



I have confirmed that dash in NEW_ADDRESS really matches the dash I'm using the search (ASCII 45).










share|improve this question



















  • 5





    '2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

    – Barmar
    May 22 at 15:49

















4















In a CASE expression, I'm trying to search inside a text column to identify a hyphen (-):



CASE 
WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7')
AND al.NEW_ADDRESS CONTAINS '-'
THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


The hyphen can be located anywhere in the column, and so I just need to know if it exists, regardless of where it actually is in the column.



I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).



I have confirmed that dash in NEW_ADDRESS really matches the dash I'm using the search (ASCII 45).










share|improve this question



















  • 5





    '2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

    – Barmar
    May 22 at 15:49













4












4








4


0






In a CASE expression, I'm trying to search inside a text column to identify a hyphen (-):



CASE 
WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7')
AND al.NEW_ADDRESS CONTAINS '-'
THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


The hyphen can be located anywhere in the column, and so I just need to know if it exists, regardless of where it actually is in the column.



I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).



I have confirmed that dash in NEW_ADDRESS really matches the dash I'm using the search (ASCII 45).










share|improve this question
















In a CASE expression, I'm trying to search inside a text column to identify a hyphen (-):



CASE 
WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7')
AND al.NEW_ADDRESS CONTAINS '-'
THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


The hyphen can be located anywhere in the column, and so I just need to know if it exists, regardless of where it actually is in the column.



I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).



I have confirmed that dash in NEW_ADDRESS really matches the dash I'm using the search (ASCII 45).







sql-server sql-server-2016 string-searching






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 22 at 14:15









Michael

1134




1134










asked May 21 at 17:39









Mike JonesMike Jones

957




957







  • 5





    '2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

    – Barmar
    May 22 at 15:49












  • 5





    '2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

    – Barmar
    May 22 at 15:49







5




5





'2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

– Barmar
May 22 at 15:49





'2754 Churchill Circle doesn't meet the SUBSTRING(al.ALT_ADDRESS,1,1) IN ('1', '5', '7') criteria, since the substring is '2'.

– Barmar
May 22 at 15:49










3 Answers
3






active

oldest

votes


















10














An alternative approach to the existing answer is to use the CHARINDEX() function which returns the position of the specified string if exists, otherwise 0.



select charindex('-','kevin-')


Will return 6, because the hyphen is located in the sixth position of the string, compared with



select charindex('-','kevin')


returns 0 because the '-' is not present in the string.




Per John Eisbrener's suggestion, PATINDEX is also an option, and it allows for wildcards - which may prove beneficial in certain circumstances.






share|improve this answer
































    14














    You didn't mention why the code you provided doesn't work. CONTAINS is for use with SQL Server's full text search feature. If you're not using this, then you need to use a LIKE clause with wildcards:



    CASE WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7') AND al.NEW_ADDRESS LIKE '%-%' 
    THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


    Even if you are using full text search, the matching behavior with dashes can be unexpected and Microsoft recommends using LIKE instead.




    You might double check that the character is really a hyphen, something like this should work:



    SELECT 
    ASCII('-') as RealHypen,
    ASCII(SUBSTRING(NEW_ADDRESS, 1, 1))
    FROM YourTable
    WHERE ALT_ADDRESS = '2754 Churchill Circle';



    As an aside, the LIKE expression above is not able to make use of the seeking abilities of a b-tree index in SQL Server, so performance may suffer on large tables if a large scanning operation is required. The best way to mitigate that (should it apply to you or others in a similar situation) depends heavily on context, but in general the main alternatives are:



    • Indexing a computed column that evaluates the search condition

    • Using triggers to persist the search result in advance

    • Use an external tool that's more suited to searching text (Elasticsearch is popular)

    • Use n-grams (typically for substrings of 3 characters or more)

    • Use Full Text Search (this won't help with wildcards per se, or this specific case, but can work for word-based searching).

    If you are interested in exploring the performance aspect, please ask a follow up question.






    share|improve this answer
































      1














      LIKE '%-%'




      I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).




      I don't get this problem at all,



      SELECT new_address
      FROM ( VALUES
      ('O-89421')
      ) AS t(new_address)
      WHERE new_address LIKE '%-%';


      Seems to work for me






      share|improve this answer























        Your Answer








        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "182"
        ;
        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',
        autoActivateHeartbeat: false,
        convertImagesToLinks: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f238714%2fhow-to-determine-if-a-hyphen-exists-inside-a-column%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        10














        An alternative approach to the existing answer is to use the CHARINDEX() function which returns the position of the specified string if exists, otherwise 0.



        select charindex('-','kevin-')


        Will return 6, because the hyphen is located in the sixth position of the string, compared with



        select charindex('-','kevin')


        returns 0 because the '-' is not present in the string.




        Per John Eisbrener's suggestion, PATINDEX is also an option, and it allows for wildcards - which may prove beneficial in certain circumstances.






        share|improve this answer





























          10














          An alternative approach to the existing answer is to use the CHARINDEX() function which returns the position of the specified string if exists, otherwise 0.



          select charindex('-','kevin-')


          Will return 6, because the hyphen is located in the sixth position of the string, compared with



          select charindex('-','kevin')


          returns 0 because the '-' is not present in the string.




          Per John Eisbrener's suggestion, PATINDEX is also an option, and it allows for wildcards - which may prove beneficial in certain circumstances.






          share|improve this answer



























            10












            10








            10







            An alternative approach to the existing answer is to use the CHARINDEX() function which returns the position of the specified string if exists, otherwise 0.



            select charindex('-','kevin-')


            Will return 6, because the hyphen is located in the sixth position of the string, compared with



            select charindex('-','kevin')


            returns 0 because the '-' is not present in the string.




            Per John Eisbrener's suggestion, PATINDEX is also an option, and it allows for wildcards - which may prove beneficial in certain circumstances.






            share|improve this answer















            An alternative approach to the existing answer is to use the CHARINDEX() function which returns the position of the specified string if exists, otherwise 0.



            select charindex('-','kevin-')


            Will return 6, because the hyphen is located in the sixth position of the string, compared with



            select charindex('-','kevin')


            returns 0 because the '-' is not present in the string.




            Per John Eisbrener's suggestion, PATINDEX is also an option, and it allows for wildcards - which may prove beneficial in certain circumstances.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 22 at 12:01









            Josh Darnell

            9,43032346




            9,43032346










            answered May 21 at 18:07









            kevinnwhatkevinnwhat

            69018




            69018























                14














                You didn't mention why the code you provided doesn't work. CONTAINS is for use with SQL Server's full text search feature. If you're not using this, then you need to use a LIKE clause with wildcards:



                CASE WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7') AND al.NEW_ADDRESS LIKE '%-%' 
                THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


                Even if you are using full text search, the matching behavior with dashes can be unexpected and Microsoft recommends using LIKE instead.




                You might double check that the character is really a hyphen, something like this should work:



                SELECT 
                ASCII('-') as RealHypen,
                ASCII(SUBSTRING(NEW_ADDRESS, 1, 1))
                FROM YourTable
                WHERE ALT_ADDRESS = '2754 Churchill Circle';



                As an aside, the LIKE expression above is not able to make use of the seeking abilities of a b-tree index in SQL Server, so performance may suffer on large tables if a large scanning operation is required. The best way to mitigate that (should it apply to you or others in a similar situation) depends heavily on context, but in general the main alternatives are:



                • Indexing a computed column that evaluates the search condition

                • Using triggers to persist the search result in advance

                • Use an external tool that's more suited to searching text (Elasticsearch is popular)

                • Use n-grams (typically for substrings of 3 characters or more)

                • Use Full Text Search (this won't help with wildcards per se, or this specific case, but can work for word-based searching).

                If you are interested in exploring the performance aspect, please ask a follow up question.






                share|improve this answer





























                  14














                  You didn't mention why the code you provided doesn't work. CONTAINS is for use with SQL Server's full text search feature. If you're not using this, then you need to use a LIKE clause with wildcards:



                  CASE WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7') AND al.NEW_ADDRESS LIKE '%-%' 
                  THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


                  Even if you are using full text search, the matching behavior with dashes can be unexpected and Microsoft recommends using LIKE instead.




                  You might double check that the character is really a hyphen, something like this should work:



                  SELECT 
                  ASCII('-') as RealHypen,
                  ASCII(SUBSTRING(NEW_ADDRESS, 1, 1))
                  FROM YourTable
                  WHERE ALT_ADDRESS = '2754 Churchill Circle';



                  As an aside, the LIKE expression above is not able to make use of the seeking abilities of a b-tree index in SQL Server, so performance may suffer on large tables if a large scanning operation is required. The best way to mitigate that (should it apply to you or others in a similar situation) depends heavily on context, but in general the main alternatives are:



                  • Indexing a computed column that evaluates the search condition

                  • Using triggers to persist the search result in advance

                  • Use an external tool that's more suited to searching text (Elasticsearch is popular)

                  • Use n-grams (typically for substrings of 3 characters or more)

                  • Use Full Text Search (this won't help with wildcards per se, or this specific case, but can work for word-based searching).

                  If you are interested in exploring the performance aspect, please ask a follow up question.






                  share|improve this answer



























                    14












                    14








                    14







                    You didn't mention why the code you provided doesn't work. CONTAINS is for use with SQL Server's full text search feature. If you're not using this, then you need to use a LIKE clause with wildcards:



                    CASE WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7') AND al.NEW_ADDRESS LIKE '%-%' 
                    THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


                    Even if you are using full text search, the matching behavior with dashes can be unexpected and Microsoft recommends using LIKE instead.




                    You might double check that the character is really a hyphen, something like this should work:



                    SELECT 
                    ASCII('-') as RealHypen,
                    ASCII(SUBSTRING(NEW_ADDRESS, 1, 1))
                    FROM YourTable
                    WHERE ALT_ADDRESS = '2754 Churchill Circle';



                    As an aside, the LIKE expression above is not able to make use of the seeking abilities of a b-tree index in SQL Server, so performance may suffer on large tables if a large scanning operation is required. The best way to mitigate that (should it apply to you or others in a similar situation) depends heavily on context, but in general the main alternatives are:



                    • Indexing a computed column that evaluates the search condition

                    • Using triggers to persist the search result in advance

                    • Use an external tool that's more suited to searching text (Elasticsearch is popular)

                    • Use n-grams (typically for substrings of 3 characters or more)

                    • Use Full Text Search (this won't help with wildcards per se, or this specific case, but can work for word-based searching).

                    If you are interested in exploring the performance aspect, please ask a follow up question.






                    share|improve this answer















                    You didn't mention why the code you provided doesn't work. CONTAINS is for use with SQL Server's full text search feature. If you're not using this, then you need to use a LIKE clause with wildcards:



                    CASE WHEN SUBSTRING(al.ALT_ADDRESS,1,1) IN('1','5','7') AND al.NEW_ADDRESS LIKE '%-%' 
                    THEN CONCAT(al.ALT_ADDRESS,al.NEW_ADDRESS)


                    Even if you are using full text search, the matching behavior with dashes can be unexpected and Microsoft recommends using LIKE instead.




                    You might double check that the character is really a hyphen, something like this should work:



                    SELECT 
                    ASCII('-') as RealHypen,
                    ASCII(SUBSTRING(NEW_ADDRESS, 1, 1))
                    FROM YourTable
                    WHERE ALT_ADDRESS = '2754 Churchill Circle';



                    As an aside, the LIKE expression above is not able to make use of the seeking abilities of a b-tree index in SQL Server, so performance may suffer on large tables if a large scanning operation is required. The best way to mitigate that (should it apply to you or others in a similar situation) depends heavily on context, but in general the main alternatives are:



                    • Indexing a computed column that evaluates the search condition

                    • Using triggers to persist the search result in advance

                    • Use an external tool that's more suited to searching text (Elasticsearch is popular)

                    • Use n-grams (typically for substrings of 3 characters or more)

                    • Use Full Text Search (this won't help with wildcards per se, or this specific case, but can work for word-based searching).

                    If you are interested in exploring the performance aspect, please ask a follow up question.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited May 22 at 17:12









                    Paul White

                    55.6k14293465




                    55.6k14293465










                    answered May 21 at 18:00









                    Josh DarnellJosh Darnell

                    9,43032346




                    9,43032346





















                        1














                        LIKE '%-%'




                        I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).




                        I don't get this problem at all,



                        SELECT new_address
                        FROM ( VALUES
                        ('O-89421')
                        ) AS t(new_address)
                        WHERE new_address LIKE '%-%';


                        Seems to work for me






                        share|improve this answer



























                          1














                          LIKE '%-%'




                          I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).




                          I don't get this problem at all,



                          SELECT new_address
                          FROM ( VALUES
                          ('O-89421')
                          ) AS t(new_address)
                          WHERE new_address LIKE '%-%';


                          Seems to work for me






                          share|improve this answer

























                            1












                            1








                            1







                            LIKE '%-%'




                            I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).




                            I don't get this problem at all,



                            SELECT new_address
                            FROM ( VALUES
                            ('O-89421')
                            ) AS t(new_address)
                            WHERE new_address LIKE '%-%';


                            Seems to work for me






                            share|improve this answer













                            LIKE '%-%'




                            I'm currently using the exact same code that @Josh provided (LIKE '%-%'), but it doesn't work, because it doesn't return the correct data for several specific instances where I know that it "should" be. The exact text in ALT_ADDRESS is: "2754 Churchill Circle". The exact text in NEW_ADDRESS is: "O-89421". However, the results that are returned, does not include the NEW_ADDRESS (O-89421).




                            I don't get this problem at all,



                            SELECT new_address
                            FROM ( VALUES
                            ('O-89421')
                            ) AS t(new_address)
                            WHERE new_address LIKE '%-%';


                            Seems to work for me







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 22 at 14:57









                            Evan CarrollEvan Carroll

                            34.1k1184245




                            34.1k1184245



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Database Administrators Stack Exchange!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f238714%2fhow-to-determine-if-a-hyphen-exists-inside-a-column%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                                Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                                Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020