sql >> Database >  >> RDS >> Mysql

MySQL en PHP - hoe worden alle rijen weergegeven waarin de veldwaarde gelijk is aan x?

<?php
$con = mysql_connect("localhost","user","password");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("database", $con);

$result = mysql_query("SELECT Player, Team, Pass_Yds, Pass_TDs, Int_Thrown, Rush_Yds, Rush_TDs, Overall_Pts, Total_Fantasy_Pts FROM ff_projections WHERE Position = 'QB' ORDER BY Pass_Yds DESC;");

while($row = mysql_fetch_array($result))
  {
  echo $row['Player'];
  echo $row['Team'];
  ....
  }

mysql_close($con);
?>



  1. Back-up van Oracle-database:type back-up en back-upstrategie

  2. Postgres gegevenstype cast

  3. DATEDIFF() Voorbeelden – MySQL

  4. Gebruik SERVERPROPERTY() om serverinformatie op te halen in SQL Server