Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

nodejs mysql एकाधिक जहां क्वेरी है

results mysql से प्रतिक्रिया की पंक्तियाँ हैं।

आइए भागों को सरल करें:

const 
  q = "SELECT * FROM user_information WHERE username=? OR email=?", // You can use placeholders like ? marks 
  args = [registerarray[1], registerarray[3]]; // array of values that will be set to placeholders (will be escaped for security)
connection
  .query(
    q, // our query
    args,  // placeholder values
    (err, records) => { // query response scope begins here
      if (err) {
        console.error(err);
      }

      console.log('THIS IS RESULT OF QUERY EXECUTION:');
      console.log(records); // this is result, already fetched array
    });



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. पीडीओ के साथ, मैं कैसे सुनिश्चित कर सकता हूं कि एक अद्यतन विवरण सफल रहा?

  2. django में गतिशील डेटाबेस टेबल

  3. JQuery के माध्यम से AJAX का उपयोग करके MySQL परिणाम पोस्ट करें

  4. MySQL क्वेरी से दोहराए गए परिणाम हटाएं

  5. OSX 10.6 में Python और Django के साथ MySQLdb का उपयोग कैसे करें?