sql >> Database >  >> RDS >> Mysql

nodejs mysql multiple waar query's

results is rijen met antwoorden van mysql.

Laten we delen vereenvoudigen:

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. Hoe een kolom op een specifieke positie in orakel in te voegen zonder de tabel te laten vallen en opnieuw te maken?

  2. Verbindingstime-out instellen in SQLAlchemy

  3. mysql union verkeerde kolommen in resultaat

  4. Oracle partitie index