how to fetch data based on and conditionHow can I prevent SQL injection in PHP?How to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?Can I concatenate multiple MySQL rows into one field?Should I use the datetime or timestamp data type in MySQL?Insert results of a stored procedure into a temporary tableHow do I create a unique constraint that also allows nulls?How do I UPDATE from a SELECT in SQL Server?Reference - What does this error mean in PHP?

How do you justify more code being written by following clean code practices?

Are hand made posters acceptable in Academia?

Why didn't Voldemort know what Grindelwald looked like?

Relations between homogeneous polynomials

What is it called when someone votes for an option that's not their first choice?

Do people actually use the word "kaputt" in conversation?

Turning a hard to access nut?

Are all namekians brothers?

Why doesn't Gödel's incompleteness theorem apply to false statements?

What is the purpose of using a decision tree?

Has the laser at Magurele, Romania reached a tenth of the Sun's power?

Sort with assumptions

Would a primitive species be able to learn English from reading books alone?

Is there a POSIX way to shutdown a UNIX machine?

Reason why a kingside attack is not justified

Why is "la Gestapo" feminine?

Air travel with refrigerated insulin

Is this saw blade faulty?

categorizing a variable turns it from insignificant to significant

Reasons for having MCU pin-states default to pull-up/down out of reset

What is this high flying aircraft over Pennsylvania?

Not hide and seek

Can a Knock spell open the door to Mordenkainen's Magnificent Mansion?

New Order #2: Turn My Way



how to fetch data based on and condition


How can I prevent SQL injection in PHP?How to return only the Date from a SQL Server DateTime datatypeHow to check if a column exists in a SQL Server table?How to concatenate text from multiple rows into a single text string in SQL server?Can I concatenate multiple MySQL rows into one field?Should I use the datetime or timestamp data type in MySQL?Insert results of a stored procedure into a temporary tableHow do I create a unique constraint that also allows nulls?How do I UPDATE from a SELECT in SQL Server?Reference - What does this error mean in PHP?













0















I am trying to get all the ID's where the value is equal to hello & world.
Since I have this data structure, how can i get this data?



id value
1 hello
1 world
2 hai
3 hello
3 world


Expected Output



id
1
3









share|improve this question



















  • 1





    Can you edit the question and add the output you want?

    – zedfoxus
    Mar 7 at 0:11











  • mysql or sql-server?

    – Dale Burrell
    Mar 7 at 5:41















0















I am trying to get all the ID's where the value is equal to hello & world.
Since I have this data structure, how can i get this data?



id value
1 hello
1 world
2 hai
3 hello
3 world


Expected Output



id
1
3









share|improve this question



















  • 1





    Can you edit the question and add the output you want?

    – zedfoxus
    Mar 7 at 0:11











  • mysql or sql-server?

    – Dale Burrell
    Mar 7 at 5:41













0












0








0








I am trying to get all the ID's where the value is equal to hello & world.
Since I have this data structure, how can i get this data?



id value
1 hello
1 world
2 hai
3 hello
3 world


Expected Output



id
1
3









share|improve this question
















I am trying to get all the ID's where the value is equal to hello & world.
Since I have this data structure, how can i get this data?



id value
1 hello
1 world
2 hai
3 hello
3 world


Expected Output



id
1
3






mysql sql-server






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 0:12







terry

















asked Mar 7 at 0:01









terryterry

508




508







  • 1





    Can you edit the question and add the output you want?

    – zedfoxus
    Mar 7 at 0:11











  • mysql or sql-server?

    – Dale Burrell
    Mar 7 at 5:41












  • 1





    Can you edit the question and add the output you want?

    – zedfoxus
    Mar 7 at 0:11











  • mysql or sql-server?

    – Dale Burrell
    Mar 7 at 5:41







1




1





Can you edit the question and add the output you want?

– zedfoxus
Mar 7 at 0:11





Can you edit the question and add the output you want?

– zedfoxus
Mar 7 at 0:11













mysql or sql-server?

– Dale Burrell
Mar 7 at 5:41





mysql or sql-server?

– Dale Burrell
Mar 7 at 5:41












2 Answers
2






active

oldest

votes


















1














You need a self join on id to check if records with same id have hello and world in value column.



Following query will give you desired output.



select t1.id 
from @table t1
inner join @table t2
on t1.id = t2.id
where t1.value = 'hello'
and t2.value = 'world'


Online Demo



Output



+----+
| id |
+----+
| 1 |
+----+
| 3 |
+----+





share|improve this answer
































    0














    SELECT id FROM tablename WHERE value = 'hello' OR value = 'world'


    or Unique id's



    SELECT id FROM tablename WHERE value = 'hello' OR value = 'world' GROUP BY id


    Another option, but I'm sure this isn't very efficient.



    SELECT * FROM (SELECT id,GROUP_CONCAT(VALUE) AS concatvalues FROM testtable GROUP BY id) mytable2 WHERE concatvalues LIKE '%hello%' AND concatvalues LIKE '%world%'





    share|improve this answer

























    • I dont think this works! as the data is id : value format

      – terry
      Mar 7 at 0:40











    • @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

      – Chris
      Mar 7 at 0:47











    • How can it be OR condition? I need all the ID's with both hello and world values

      – terry
      Mar 7 at 0:55












    • I've re-read your question and I think I've misunderstood what you meant.

      – Chris
      Mar 7 at 0:59










    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    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: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    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%2fstackoverflow.com%2fquestions%2f55034074%2fhow-to-fetch-data-based-on-and-condition%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    You need a self join on id to check if records with same id have hello and world in value column.



    Following query will give you desired output.



    select t1.id 
    from @table t1
    inner join @table t2
    on t1.id = t2.id
    where t1.value = 'hello'
    and t2.value = 'world'


    Online Demo



    Output



    +----+
    | id |
    +----+
    | 1 |
    +----+
    | 3 |
    +----+





    share|improve this answer





























      1














      You need a self join on id to check if records with same id have hello and world in value column.



      Following query will give you desired output.



      select t1.id 
      from @table t1
      inner join @table t2
      on t1.id = t2.id
      where t1.value = 'hello'
      and t2.value = 'world'


      Online Demo



      Output



      +----+
      | id |
      +----+
      | 1 |
      +----+
      | 3 |
      +----+





      share|improve this answer



























        1












        1








        1







        You need a self join on id to check if records with same id have hello and world in value column.



        Following query will give you desired output.



        select t1.id 
        from @table t1
        inner join @table t2
        on t1.id = t2.id
        where t1.value = 'hello'
        and t2.value = 'world'


        Online Demo



        Output



        +----+
        | id |
        +----+
        | 1 |
        +----+
        | 3 |
        +----+





        share|improve this answer















        You need a self join on id to check if records with same id have hello and world in value column.



        Following query will give you desired output.



        select t1.id 
        from @table t1
        inner join @table t2
        on t1.id = t2.id
        where t1.value = 'hello'
        and t2.value = 'world'


        Online Demo



        Output



        +----+
        | id |
        +----+
        | 1 |
        +----+
        | 3 |
        +----+






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 7 at 4:50

























        answered Mar 7 at 4:37









        PSKPSK

        12.8k31834




        12.8k31834























            0














            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world'


            or Unique id's



            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world' GROUP BY id


            Another option, but I'm sure this isn't very efficient.



            SELECT * FROM (SELECT id,GROUP_CONCAT(VALUE) AS concatvalues FROM testtable GROUP BY id) mytable2 WHERE concatvalues LIKE '%hello%' AND concatvalues LIKE '%world%'





            share|improve this answer

























            • I dont think this works! as the data is id : value format

              – terry
              Mar 7 at 0:40











            • @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

              – Chris
              Mar 7 at 0:47











            • How can it be OR condition? I need all the ID's with both hello and world values

              – terry
              Mar 7 at 0:55












            • I've re-read your question and I think I've misunderstood what you meant.

              – Chris
              Mar 7 at 0:59















            0














            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world'


            or Unique id's



            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world' GROUP BY id


            Another option, but I'm sure this isn't very efficient.



            SELECT * FROM (SELECT id,GROUP_CONCAT(VALUE) AS concatvalues FROM testtable GROUP BY id) mytable2 WHERE concatvalues LIKE '%hello%' AND concatvalues LIKE '%world%'





            share|improve this answer

























            • I dont think this works! as the data is id : value format

              – terry
              Mar 7 at 0:40











            • @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

              – Chris
              Mar 7 at 0:47











            • How can it be OR condition? I need all the ID's with both hello and world values

              – terry
              Mar 7 at 0:55












            • I've re-read your question and I think I've misunderstood what you meant.

              – Chris
              Mar 7 at 0:59













            0












            0








            0







            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world'


            or Unique id's



            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world' GROUP BY id


            Another option, but I'm sure this isn't very efficient.



            SELECT * FROM (SELECT id,GROUP_CONCAT(VALUE) AS concatvalues FROM testtable GROUP BY id) mytable2 WHERE concatvalues LIKE '%hello%' AND concatvalues LIKE '%world%'





            share|improve this answer















            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world'


            or Unique id's



            SELECT id FROM tablename WHERE value = 'hello' OR value = 'world' GROUP BY id


            Another option, but I'm sure this isn't very efficient.



            SELECT * FROM (SELECT id,GROUP_CONCAT(VALUE) AS concatvalues FROM testtable GROUP BY id) mytable2 WHERE concatvalues LIKE '%hello%' AND concatvalues LIKE '%world%'






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Mar 7 at 1:00

























            answered Mar 7 at 0:07









            ChrisChris

            1127




            1127












            • I dont think this works! as the data is id : value format

              – terry
              Mar 7 at 0:40











            • @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

              – Chris
              Mar 7 at 0:47











            • How can it be OR condition? I need all the ID's with both hello and world values

              – terry
              Mar 7 at 0:55












            • I've re-read your question and I think I've misunderstood what you meant.

              – Chris
              Mar 7 at 0:59

















            • I dont think this works! as the data is id : value format

              – terry
              Mar 7 at 0:40











            • @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

              – Chris
              Mar 7 at 0:47











            • How can it be OR condition? I need all the ID's with both hello and world values

              – terry
              Mar 7 at 0:55












            • I've re-read your question and I think I've misunderstood what you meant.

              – Chris
              Mar 7 at 0:59
















            I dont think this works! as the data is id : value format

            – terry
            Mar 7 at 0:40





            I dont think this works! as the data is id : value format

            – terry
            Mar 7 at 0:40













            @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

            – Chris
            Mar 7 at 0:47





            @terry I've changed my answer based on your expected output. You might want to add GROUP BY id

            – Chris
            Mar 7 at 0:47













            How can it be OR condition? I need all the ID's with both hello and world values

            – terry
            Mar 7 at 0:55






            How can it be OR condition? I need all the ID's with both hello and world values

            – terry
            Mar 7 at 0:55














            I've re-read your question and I think I've misunderstood what you meant.

            – Chris
            Mar 7 at 0:59





            I've re-read your question and I think I've misunderstood what you meant.

            – Chris
            Mar 7 at 0:59

















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • 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%2fstackoverflow.com%2fquestions%2f55034074%2fhow-to-fetch-data-based-on-and-condition%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

            Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

            Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

            Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved