Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Zapytanie wyboru Mysql oparte na wielu danych wprowadzonych przez użytkownika

Spróbuj tego:

    var sql = 'SELECT * FROM table';
    var where = ' WHERE';

    //category is present in userinput 
    if(category){
      sql += where + ' category=category';   
      where = ' and';
    }

    //subject is present in userinput
    if(subject){
      sql += where + ' subject=subject';
      where = ' and';
    }

    if(material){
       sql += where + ' material=material';
       where = ' and';
     }

    if(medium){
      sql += where + ' medium=medium';
    }

    db.query(sql,function(error,result){
         console.log(result);
    });


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PDO w wydajności mysql

  2. Czy w Laravelu można uzyskać relację między tabelą przestawną a inną tabelą?

  3. błąd mysql 1406

  4. SCHEMA() Funkcja w MySQL

  5. Zdalne połączenia Mysql Ubuntu