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

एकाधिक उपयोगकर्ता इनपुट के आधार पर MySQL क्वेरी का चयन करें

इसे आजमाएं:

    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. MySQL संग्रहीत कार्यविधि त्रुटि अनपेक्षित वर्ण:

  2. MySQL क्वेरी परिणाम में विशिष्ट पंक्ति कैसे खोजें?

  3. रूबी ऑन रेल्स को दूरस्थ mysql डेटाबेस से कनेक्ट नहीं कर सकता

  4. फ़ील्ड मान द्वारा Zend_Db ऑर्डर

  5. आवृत्ति द्वारा SQL क्वेरी रिकॉर्ड ऑर्डर करें