sql >> Database >  >> RDS >> Mysql

Matrixsleutels en -waarden gebruiken om sql select-instructie te maken

U kunt een eenvoudige SQL Select als volgt bouwen:

<?php


/**
 * @param array Column => Value pairs
 * @return string
 */
function create_sql_select(array $pair){
  $condition = array(); 

  foreach ( $pair as $key => $value){
    $condition[] = "{$key} = '{$value}'";
  } 

 // Separate by AND delimiter if there are more than 1 pair 
 $condition = join(' AND ', $condition);

 // Return prepared string:
 return "SELECT * FROM your_table WHERE {$condition}";
}

//Will print: SELECT * FROM your_table WHERE user = 'some' AND age = '10'
print create_sql_select(array('user' => 'some', 'age' => 10));


  1. Selecteer in een veel-op-veel-relatie in MySQL

  2. SUM() Functie in PostgreSQL

  3. Hoe COERCIBILITY() werkt in MariaDB

  4. Tips voor het bewaken van MySQL voor Moodle