Jump to content

Problem with null query inner join


gmc1103
Go to solution Solved by Barand,

Recommended Posts

Hi

 

I have this query

SELECT 
COALESCE(id_tempo, 0) AS id_tempos
,`semana_dias`.`dia`
, `req_material_sala`.`sala`
, `req_material_tempo`.`inicio`
FROM sala_ocupacao 
INNER JOIN `semana_dias` ON (`sala_ocupacao`.`id_dia` = `semana_dias`.`id_dia`)
INNER JOIN `req_material_sala` ON (`sala_ocupacao`.`id_sala` = `req_material_sala`.`idsala`)
INNER JOIN `req_material_tempo` ON (`sala_ocupacao`.`id_tempo` = req_material_tempo.`idtempo`)
ORDER BY id_ocup;

That one returns only the values where there is no null

 

If i remove those lines

, `req_material_tempo`.`inicio`
INNER JOIN `req_material_tempo` ON (`sala_ocupacao`.`id_tempo` = req_material_tempo.`idtempo`)

I have the null values converted to zero but i don't have the column where i can get the names instead of the id

 

How can i achive this??

 

 

Something like the picture with the 0 or null values

 

 

Thanks for any help

 

 

post-174418-0-28826500-1430265075_thumb.png

Link to comment
Share on other sites

But now i have a problem running my query in php file

<?php
error_reporting(E_ALL | E_NOTICE);
ini_set('display_errors', '1');
include 'conn.php';
mysql_query("SET NAMES 'utf8'");
$rs = mysql_query('SELECT 
`semana_dias`.`dia`
, `req_material_sala`.`sala`
, `req_material_tempo`.`inicio`
FROM sala_ocupacao 
INNER JOIN `semana_dias` ON (`sala_ocupacao`.`id_dia` = `semana_dias`.`id_dia`)
INNER JOIN `req_material_sala` ON (`sala_ocupacao`.`id_sala` = `req_material_sala`.`idsala`)
LEFT  JOIN `req_material_tempo` ON (`sala_ocupacao`.`id_tempo` = req_material_tempo.`idtempo`)
ORDER BY sala_ocupacao.`id_ocup`id_ocup;');
$result = array();
while($row = mysql_fetch_object($rs)){
	array_push($result, $row);
}
    echo json_encode($result);
?>

i get this error

 

</span> Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\multiple\get_ocupacao.php on line <i>16

 

???

 

Whats wrong now

i get this error

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.