sql >> データベース >  >> RDS >> Mysql

nodejsmysql複数のクエリの場所

    結果 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. MySQLのmy.cnfの場所を見つけるにはどうすればよいですか

    2. 継続的なデータベース監視の改善のための秘訣

    3. SQLiteでiif()がどのように機能するか

    4. jpa/hibernateを使用したエンティティの更新に関する問題