Is there a (better) way to access $wpdb results? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Moderator Election Q&A - Questionnaire 2019 Community Moderator Election ResultsRetrieving multisite blog IDs, somehow failing to foreach them properlyChecking if meta_value exists for any userwpdb inside foreach loop only returns first result - 2 other similar cases foundCustom $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?How to access PostgreSQL using WPDB?wpdb query not workingWPDB delivers wrong results from complex queries

Extract all GPU name, model and GPU ram

Why didn't this character "real die" when they blew their stack out in Altered Carbon?

Short Story with Cinderella as a Voo-doo Witch

Seeking colloquialism for “just because”

Is it true that "carbohydrates are of no use for the basal metabolic need"?

English words in a non-english sci-fi novel

What is a non-alternating simple group with big order, but relatively few conjugacy classes?

List of Python versions

How to find out what spells would be useless to a blind NPC spellcaster?

Using audio cues to encourage good posture

What is Arya's weapon design?

What does this icon in iOS Stardew Valley mean?

How do I stop a creek from eroding my steep embankment?

Apollo command module space walk?

How to call a function with default parameter through a pointer to function that is the return of another function?

Why is my conclusion inconsistent with the van't Hoff equation?

Generate an RGB colour grid

Dating a Former Employee

Overriding an object in memory with placement new

What's the meaning of 間時肆拾貳 at a car parking sign

What's the purpose of writing one's academic biography in the third person?

How to bypass password on Windows XP account?

What exactly is a "Meth" in Altered Carbon?

Sci-Fi book where patients in a coma ward all live in a subconscious world linked together



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



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Moderator Election Q&A - Questionnaire
2019 Community Moderator Election ResultsRetrieving multisite blog IDs, somehow failing to foreach them properlyChecking if meta_value exists for any userwpdb inside foreach loop only returns first result - 2 other similar cases foundCustom $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?How to access PostgreSQL using WPDB?wpdb query not workingWPDB delivers wrong results from complex queries



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








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



















  • 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
    9 hours ago












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

    – TTT
    9 hours ago

















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



















  • 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
    9 hours ago












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

    – TTT
    9 hours ago













1












1








1


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 9 hours ago







TTT

















asked 9 hours ago









TTTTTT

1728




1728







  • 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
    9 hours ago












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

    – TTT
    9 hours ago












  • 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
    9 hours ago












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

    – TTT
    9 hours ago







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
9 hours ago






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
9 hours ago














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

– TTT
9 hours ago





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

– TTT
9 hours ago










2 Answers
2






active

oldest

votes


















3














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.






share|improve this answer






























    4














    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/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%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









      3














      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.






      share|improve this answer



























        3














        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.






        share|improve this answer

























          3












          3








          3







          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.






          share|improve this 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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 9 hours ago









          RupRup

          776715




          776715























              4














              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



























                4














                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

























                  4












                  4








                  4







                  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 9 hours ago









                  Howdy_McGeeHowdy_McGee

                  13.7k1459127




                  13.7k1459127



























                      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

                      How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

                      Българска екзархия Съдържание История | Български екзарси | Вижте също | Външни препратки | Литература | Бележки | НавигацияУстав за управлението на българската екзархия. Цариград, 1870Слово на Ловешкия митрополит Иларион при откриването на Българския народен събор в Цариград на 23. II. 1870 г.Българската правда и гръцката кривда. От С. М. (= Софийски Мелетий). Цариград, 1872Предстоятели на Българската екзархияПодмененият ВеликденИнформационна агенция „Фокус“Димитър Ризов. Българите в техните исторически, етнографически и политически граници (Атлас съдържащ 40 карти). Berlin, Königliche Hoflithographie, Hof-Buch- und -Steindruckerei Wilhelm Greve, 1917Report of the International Commission to Inquire into the Causes and Conduct of the Balkan Wars

                      Category:Tremithousa Media in category "Tremithousa"Navigation menuUpload media34° 49′ 02.7″ N, 32° 26′ 37.32″ EOpenStreetMapGoogle EarthProximityramaReasonatorScholiaStatisticsWikiShootMe