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

MySQL के साथ PHP का उपयोग कर डेटाटेबल्स:MySQL क्वेरी को कैसे संशोधित करें?

/*
* Filtering
 * NOTE this does not match the built-in DataTables filtering which does it
 * word by word on any field. It's possible to do here, but concerned about efficiency
 * on very large tables, and MySQL's regex functionality is very limited
 */

//$sWhere = "";

if ( isset($_GET['sSearch']) && $_GET['sSearch'] != "" )
{
$sWhere = "WHERE id='4' AND (";
for ( $i=0 ; $i<count($aColumns) ; $i++ )
{
    if ( isset($_GET['bSearchable_'.$i]) && $_GET['bSearchable_'.$i] == "true" )
    {
        $sWhere .= $aColumns[$i]." LIKE '%".mysql_real_escape_string( $_GET['sSearch'] )."%' OR ";
    }
}
$sWhere = substr_replace( $sWhere, "", -3 );
$sWhere .= ')';
} else {
$sWhere = "WHERE id = '4' ";
}


  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. एक्लिप्सलिंक के साथ खोए हुए कनेक्शन को फिर से कैसे कनेक्ट करें?

  3. CSV फ़ाइल को MySQL तालिका में कैसे आयात करें

  4. एकाधिक पेज पेजिनेशन में सभी डेटा प्रिंट करें

  5. MySQL त्रुटि कोड:1064. आपको अपने SQL सिंटैक्स में त्रुटि है