Is there a (better) way to access $wpdb results?$wpdb->insert not working in any wayRetrieving multisite blog IDs, somehow failing to foreach them properlyCustom $wpdb returns unexpected time based resultswpdb query problem to access previous 3 days postsaccess JSON results from wordpress database with wpdbIs $wpdb->prepare escaping to much? How to use it properly?

"last" command not working properly

Manager told a colleague of mine I was getting fired soon

What is the difference between increasing volume and increasing gain?

Did the Humans find out about Gaius Baltar's role in the sabotage of the fleet?

Can an NPC use the teleport spell to affect an object they can see with the scry spell?

The work of mathematicians outside their professional environment

Enumerating all permutations that are "square roots" of derangements

Lighthouse Alternatives

Is there any problem with students seeing faculty naked in university gym?

Is there a pattern for handling conflicting function parameters?

Why is my vegetable stock bitter, but the chicken stock not?

Does it require less energy to reach the Sun from Pluto's orbit than from Earth's orbit?

What benefits are there to blocking most search engines?

Is American Sign Language phonetic?

Does the DOJ's declining to investigate the Trump-Zelensky call ruin the basis for impeachment?

"cd" into /sys/kernel/debug/tracing causes permission change

Injection from two strings to one string

Could Boris Johnson face criminal charges for illegally proroguing Parliament?

Did S. Lang prove Kuratowski–Zorn lemma without Axiom of choice or Well-ordering theorem?

Was Smaug sealed inside the Lonely Mountain?

Using 4K Skyrim Textures when running 1920 x 1080 display resolution?

How dangerous are my worn rims?

How can I find places to store/land a private airplane?

As a girl, how can I voice male characters effectively?



Is there a (better) way to access $wpdb results?


$wpdb->insert not working in any wayRetrieving multisite blog IDs, somehow failing to foreach them properlyCustom $wpdb returns unexpected time based resultswpdb query problem to access previous 3 days postsaccess JSON results from wordpress database with wpdbIs $wpdb->prepare escaping to much? How to use it properly?






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









2















I have this:



 global $wpdb;
$wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d);',$target_user_id);
$result = $wpdb->get_results($wpdbp);


I want to know if the query result is 1 or 0.
But a var_dump() of $result give something like:



array (size=1)
0 =>
object(stdClass)[4592]
public 'EXISTS ([some query] WHERE user_id =2)' => string '0' (length=1)


Which means I should first get element 0 of array, but then, I need to access a property which name is literally the whole query.



I yet need to test if that is even doable in php (I guess yes but I don't remember in this language precisely), and what happens if I have multiline query ...
Anyway I find that so ugly ... is there a cleaned way to get query result?
Maybe there's a way to give a name string to the query or so?




Here is what I'm trying and this isn't even working ...



$qeryAsPropertyName = substr($wpdbp,7, -strlen($wpdbp-1));
$result0 = $result[0]->$qeryAsPropertyName;









share|improve this question





















  • 1





    That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

    – Rup
    Apr 16 at 14:31












  • This worked thank you. If you write it as answer I can check it as solution.

    – TTT
    Apr 16 at 14:34

















2















I have this:



 global $wpdb;
$wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d);',$target_user_id);
$result = $wpdb->get_results($wpdbp);


I want to know if the query result is 1 or 0.
But a var_dump() of $result give something like:



array (size=1)
0 =>
object(stdClass)[4592]
public 'EXISTS ([some query] WHERE user_id =2)' => string '0' (length=1)


Which means I should first get element 0 of array, but then, I need to access a property which name is literally the whole query.



I yet need to test if that is even doable in php (I guess yes but I don't remember in this language precisely), and what happens if I have multiline query ...
Anyway I find that so ugly ... is there a cleaned way to get query result?
Maybe there's a way to give a name string to the query or so?




Here is what I'm trying and this isn't even working ...



$qeryAsPropertyName = substr($wpdbp,7, -strlen($wpdbp-1));
$result0 = $result[0]->$qeryAsPropertyName;









share|improve this question





















  • 1





    That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

    – Rup
    Apr 16 at 14:31












  • This worked thank you. If you write it as answer I can check it as solution.

    – TTT
    Apr 16 at 14:34













2












2








2


1






I have this:



 global $wpdb;
$wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d);',$target_user_id);
$result = $wpdb->get_results($wpdbp);


I want to know if the query result is 1 or 0.
But a var_dump() of $result give something like:



array (size=1)
0 =>
object(stdClass)[4592]
public 'EXISTS ([some query] WHERE user_id =2)' => string '0' (length=1)


Which means I should first get element 0 of array, but then, I need to access a property which name is literally the whole query.



I yet need to test if that is even doable in php (I guess yes but I don't remember in this language precisely), and what happens if I have multiline query ...
Anyway I find that so ugly ... is there a cleaned way to get query result?
Maybe there's a way to give a name string to the query or so?




Here is what I'm trying and this isn't even working ...



$qeryAsPropertyName = substr($wpdbp,7, -strlen($wpdbp-1));
$result0 = $result[0]->$qeryAsPropertyName;









share|improve this question
















I have this:



 global $wpdb;
$wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d);',$target_user_id);
$result = $wpdb->get_results($wpdbp);


I want to know if the query result is 1 or 0.
But a var_dump() of $result give something like:



array (size=1)
0 =>
object(stdClass)[4592]
public 'EXISTS ([some query] WHERE user_id =2)' => string '0' (length=1)


Which means I should first get element 0 of array, but then, I need to access a property which name is literally the whole query.



I yet need to test if that is even doable in php (I guess yes but I don't remember in this language precisely), and what happens if I have multiline query ...
Anyway I find that so ugly ... is there a cleaned way to get query result?
Maybe there's a way to give a name string to the query or so?




Here is what I'm trying and this isn't even working ...



$qeryAsPropertyName = substr($wpdbp,7, -strlen($wpdbp-1));
$result0 = $result[0]->$qeryAsPropertyName;






wpdb sql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 16 at 14:32







TTT

















asked Apr 16 at 14:19









TTTTTT

1791 silver badge10 bronze badges




1791 silver badge10 bronze badges










  • 1





    That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

    – Rup
    Apr 16 at 14:31












  • This worked thank you. If you write it as answer I can check it as solution.

    – TTT
    Apr 16 at 14:34












  • 1





    That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

    – Rup
    Apr 16 at 14:31












  • This worked thank you. If you write it as answer I can check it as solution.

    – TTT
    Apr 16 at 14:34







1




1





That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

– Rup
Apr 16 at 14:31






That might be a MySQL-generated column name. You could try SELECT EXISTS (...) AS name to give it a different name (where you can quote name in backticks).

– Rup
Apr 16 at 14:31














This worked thank you. If you write it as answer I can check it as solution.

– TTT
Apr 16 at 14:34





This worked thank you. If you write it as answer I can check it as solution.

– TTT
Apr 16 at 14:34










2 Answers
2






active

oldest

votes


















4
















This answer explains what the OP saw with column names and how to work with that, but the real answer is to use get_var() as in Howdy_McGee's answer.




The string you're seeing is the column name that MySQL is using for the result, because it doesn't have any better ideas. One way is to give it an explicit name to use instead with AS, e.g.



global $wpdb;
$wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d) AS `exists`;',
$target_user_id);
$result = $wpdb->get_results($wpdbp);


then the column name will be exists, i.e.



$result = $result[0]['exists'];


However I'm surprised there isn't a 'execute query and return scalar' method in $wpdb that you can use instead to just fetch a single result like this. There is a better way, but I'd missed it as I was searching for terms like 'scalar', bah.






share|improve this answer


































    6
















    The WPDB Class has quite a few methods which vary what will be returned.



    Using WPDB::get_results() returns an array of objects whose properties end up being what it expects to be returned. In this case may be best to alias your subquery. For example, if I wanted to check if user ID 1 exists I could say:



    $results = $wpdb->get_results( "SELECT EXISTS( SELECT ID FROM $wpdb->users WHERE ID = 1 ) AS 'exists'" );

    if( ! empty( $results ) && $results[0]->exists )
    /* ... */



    A better solution would be, if you just want one thing returned, you could use WPDB::get_var()



    $exists = $wpdb->get_var( $wpdb->prepare( "
    SELECT EXISTS ( [some query] WHERE user_id = %d )
    ", $user_id ) );

    if( $exists )
    /* ... */



    Or if you wanted the username by ID:



    $username = $wpdb->get_var( $wpdb->prepare( "
    SELECT user_login FROM $wpdb->users WHERE ID = %d
    ", $user_id ) );

    if( ! empty( $username ) )
    printf( 'User %d user name is: %s', $user_id, $username );



    That being said your best bet is to read through the documentation and look at the available methods to figure out which is best in your user case:



    https://codex.wordpress.org/Class_Reference/wpdb






    share|improve this answer


























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "110"
      ;
      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/4.0/"u003ecc by-sa 4.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%2fwordpress.stackexchange.com%2fquestions%2f334503%2fis-there-a-better-way-to-access-wpdb-results%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









      4
















      This answer explains what the OP saw with column names and how to work with that, but the real answer is to use get_var() as in Howdy_McGee's answer.




      The string you're seeing is the column name that MySQL is using for the result, because it doesn't have any better ideas. One way is to give it an explicit name to use instead with AS, e.g.



      global $wpdb;
      $wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d) AS `exists`;',
      $target_user_id);
      $result = $wpdb->get_results($wpdbp);


      then the column name will be exists, i.e.



      $result = $result[0]['exists'];


      However I'm surprised there isn't a 'execute query and return scalar' method in $wpdb that you can use instead to just fetch a single result like this. There is a better way, but I'd missed it as I was searching for terms like 'scalar', bah.






      share|improve this answer































        4
















        This answer explains what the OP saw with column names and how to work with that, but the real answer is to use get_var() as in Howdy_McGee's answer.




        The string you're seeing is the column name that MySQL is using for the result, because it doesn't have any better ideas. One way is to give it an explicit name to use instead with AS, e.g.



        global $wpdb;
        $wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d) AS `exists`;',
        $target_user_id);
        $result = $wpdb->get_results($wpdbp);


        then the column name will be exists, i.e.



        $result = $result[0]['exists'];


        However I'm surprised there isn't a 'execute query and return scalar' method in $wpdb that you can use instead to just fetch a single result like this. There is a better way, but I'd missed it as I was searching for terms like 'scalar', bah.






        share|improve this answer





























          4














          4










          4









          This answer explains what the OP saw with column names and how to work with that, but the real answer is to use get_var() as in Howdy_McGee's answer.




          The string you're seeing is the column name that MySQL is using for the result, because it doesn't have any better ideas. One way is to give it an explicit name to use instead with AS, e.g.



          global $wpdb;
          $wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d) AS `exists`;',
          $target_user_id);
          $result = $wpdb->get_results($wpdbp);


          then the column name will be exists, i.e.



          $result = $result[0]['exists'];


          However I'm surprised there isn't a 'execute query and return scalar' method in $wpdb that you can use instead to just fetch a single result like this. There is a better way, but I'd missed it as I was searching for terms like 'scalar', bah.






          share|improve this answer















          This answer explains what the OP saw with column names and how to work with that, but the real answer is to use get_var() as in Howdy_McGee's answer.




          The string you're seeing is the column name that MySQL is using for the result, because it doesn't have any better ideas. One way is to give it an explicit name to use instead with AS, e.g.



          global $wpdb;
          $wpdbp = $wpdb->prepare('SELECT EXISTS ([some query] WHERE user_id =%d) AS `exists`;',
          $target_user_id);
          $result = $wpdb->get_results($wpdbp);


          then the column name will be exists, i.e.



          $result = $result[0]['exists'];


          However I'm surprised there isn't a 'execute query and return scalar' method in $wpdb that you can use instead to just fetch a single result like this. There is a better way, but I'd missed it as I was searching for terms like 'scalar', bah.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 18 at 10:35

























          answered Apr 16 at 14:39









          RupRup

          1,13010 silver badges16 bronze badges




          1,13010 silver badges16 bronze badges


























              6
















              The WPDB Class has quite a few methods which vary what will be returned.



              Using WPDB::get_results() returns an array of objects whose properties end up being what it expects to be returned. In this case may be best to alias your subquery. For example, if I wanted to check if user ID 1 exists I could say:



              $results = $wpdb->get_results( "SELECT EXISTS( SELECT ID FROM $wpdb->users WHERE ID = 1 ) AS 'exists'" );

              if( ! empty( $results ) && $results[0]->exists )
              /* ... */



              A better solution would be, if you just want one thing returned, you could use WPDB::get_var()



              $exists = $wpdb->get_var( $wpdb->prepare( "
              SELECT EXISTS ( [some query] WHERE user_id = %d )
              ", $user_id ) );

              if( $exists )
              /* ... */



              Or if you wanted the username by ID:



              $username = $wpdb->get_var( $wpdb->prepare( "
              SELECT user_login FROM $wpdb->users WHERE ID = %d
              ", $user_id ) );

              if( ! empty( $username ) )
              printf( 'User %d user name is: %s', $user_id, $username );



              That being said your best bet is to read through the documentation and look at the available methods to figure out which is best in your user case:



              https://codex.wordpress.org/Class_Reference/wpdb






              share|improve this answer





























                6
















                The WPDB Class has quite a few methods which vary what will be returned.



                Using WPDB::get_results() returns an array of objects whose properties end up being what it expects to be returned. In this case may be best to alias your subquery. For example, if I wanted to check if user ID 1 exists I could say:



                $results = $wpdb->get_results( "SELECT EXISTS( SELECT ID FROM $wpdb->users WHERE ID = 1 ) AS 'exists'" );

                if( ! empty( $results ) && $results[0]->exists )
                /* ... */



                A better solution would be, if you just want one thing returned, you could use WPDB::get_var()



                $exists = $wpdb->get_var( $wpdb->prepare( "
                SELECT EXISTS ( [some query] WHERE user_id = %d )
                ", $user_id ) );

                if( $exists )
                /* ... */



                Or if you wanted the username by ID:



                $username = $wpdb->get_var( $wpdb->prepare( "
                SELECT user_login FROM $wpdb->users WHERE ID = %d
                ", $user_id ) );

                if( ! empty( $username ) )
                printf( 'User %d user name is: %s', $user_id, $username );



                That being said your best bet is to read through the documentation and look at the available methods to figure out which is best in your user case:



                https://codex.wordpress.org/Class_Reference/wpdb






                share|improve this answer



























                  6














                  6










                  6









                  The WPDB Class has quite a few methods which vary what will be returned.



                  Using WPDB::get_results() returns an array of objects whose properties end up being what it expects to be returned. In this case may be best to alias your subquery. For example, if I wanted to check if user ID 1 exists I could say:



                  $results = $wpdb->get_results( "SELECT EXISTS( SELECT ID FROM $wpdb->users WHERE ID = 1 ) AS 'exists'" );

                  if( ! empty( $results ) && $results[0]->exists )
                  /* ... */



                  A better solution would be, if you just want one thing returned, you could use WPDB::get_var()



                  $exists = $wpdb->get_var( $wpdb->prepare( "
                  SELECT EXISTS ( [some query] WHERE user_id = %d )
                  ", $user_id ) );

                  if( $exists )
                  /* ... */



                  Or if you wanted the username by ID:



                  $username = $wpdb->get_var( $wpdb->prepare( "
                  SELECT user_login FROM $wpdb->users WHERE ID = %d
                  ", $user_id ) );

                  if( ! empty( $username ) )
                  printf( 'User %d user name is: %s', $user_id, $username );



                  That being said your best bet is to read through the documentation and look at the available methods to figure out which is best in your user case:



                  https://codex.wordpress.org/Class_Reference/wpdb






                  share|improve this answer













                  The WPDB Class has quite a few methods which vary what will be returned.



                  Using WPDB::get_results() returns an array of objects whose properties end up being what it expects to be returned. In this case may be best to alias your subquery. For example, if I wanted to check if user ID 1 exists I could say:



                  $results = $wpdb->get_results( "SELECT EXISTS( SELECT ID FROM $wpdb->users WHERE ID = 1 ) AS 'exists'" );

                  if( ! empty( $results ) && $results[0]->exists )
                  /* ... */



                  A better solution would be, if you just want one thing returned, you could use WPDB::get_var()



                  $exists = $wpdb->get_var( $wpdb->prepare( "
                  SELECT EXISTS ( [some query] WHERE user_id = %d )
                  ", $user_id ) );

                  if( $exists )
                  /* ... */



                  Or if you wanted the username by ID:



                  $username = $wpdb->get_var( $wpdb->prepare( "
                  SELECT user_login FROM $wpdb->users WHERE ID = %d
                  ", $user_id ) );

                  if( ! empty( $username ) )
                  printf( 'User %d user name is: %s', $user_id, $username );



                  That being said your best bet is to read through the documentation and look at the available methods to figure out which is best in your user case:



                  https://codex.wordpress.org/Class_Reference/wpdb







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 16 at 14:42









                  Howdy_McGeeHowdy_McGee

                  14.4k14 gold badges62 silver badges134 bronze badges




                  14.4k14 gold badges62 silver badges134 bronze badges































                      draft saved

                      draft discarded















































                      Thanks for contributing an answer to WordPress Development 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%2fwordpress.stackexchange.com%2fquestions%2f334503%2fis-there-a-better-way-to-access-wpdb-results%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

                      Tamil (spriik) Luke uk diar | Nawigatjuun

                      Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                      Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?