我不知道我的查询出了什么问题,连接正常,但查询失败

时间:2019-07-23 14:36:43

标签: php sql

我的连接正确,但是我不知道查询出了什么问题。

$conexion = mysqli_connect($servername, $username, $password, $database);

if (!$conexion) {
      die("Connection failed: " . mysqli_connect_error());

代码:

$sql = mysqli_query("SELECT Nombre, Edad, Sexo, Grupo, Hospedaje FROM registros WHERE edad >='11' and edad <='17' AND Sexo = 'FEMENINO' ORDER BY Nombre, Edad ");
$result=mysqli_query($conexion,$sql);
echo $result;

0 个答案:

没有答案