mysql 퀴리문 질문~ 정보
MySQL mysql 퀴리문 질문~본문
SELECT
`mto_action_Bidding`.*,
`mto_action_entryList`.`item`,
`mto_action_entryList`.`amount`,
`mto_action_entryList`.`cancelCheck`,
`mto_action_entryList`.`comment`,
MAX(`mto_action_Bidding`.`price`) as 'maxPrice',
`mto_action_entryList`.`endTime`- 1316981797 AS 'leftTime',
(SELECT `name` FROM `mto_user_data` WHERE `id` = `mto_action_entryList`.`id` LIMIT 1) AS 'contributorName'
FROM `mto_action_Bidding` LEFT JOIN `mto_action_entryList` ON `mto_action_Bidding`.`actionKey` = `mto_action_entryList`.`no` WHERE `mto_action_Bidding`.`id` = 'GM00' ORDER BY `mto_action_Bidding`.`no` DESC LIMIT 0, 10
해당 퀴리문이 있습니다.. 위에것 정상 작동 합니다.
문제가 있다면 아무 데이타가 없으면 그냥 반환이 전혀 안되야 하는데.
MAX(`mto_action_Bidding`.`price`) as 'maxPrice', 문구 때문에
no actionKey id insertTime biddingCheck price item amount cancelCheck comment maxPrice leftTime contributorName
NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
이렇게 쓸모 없는 데이터가 날아 옵니다.
MAX(`mto_action_Bidding`.`price`) as 'maxPrice', 문구 넣으면서
저런 데이터 안 나오게 할수 없나요?<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]</div>
`mto_action_Bidding`.*,
`mto_action_entryList`.`item`,
`mto_action_entryList`.`amount`,
`mto_action_entryList`.`cancelCheck`,
`mto_action_entryList`.`comment`,
MAX(`mto_action_Bidding`.`price`) as 'maxPrice',
`mto_action_entryList`.`endTime`- 1316981797 AS 'leftTime',
(SELECT `name` FROM `mto_user_data` WHERE `id` = `mto_action_entryList`.`id` LIMIT 1) AS 'contributorName'
FROM `mto_action_Bidding` LEFT JOIN `mto_action_entryList` ON `mto_action_Bidding`.`actionKey` = `mto_action_entryList`.`no` WHERE `mto_action_Bidding`.`id` = 'GM00' ORDER BY `mto_action_Bidding`.`no` DESC LIMIT 0, 10
해당 퀴리문이 있습니다.. 위에것 정상 작동 합니다.
문제가 있다면 아무 데이타가 없으면 그냥 반환이 전혀 안되야 하는데.
MAX(`mto_action_Bidding`.`price`) as 'maxPrice', 문구 때문에
no actionKey id insertTime biddingCheck price item amount cancelCheck comment maxPrice leftTime contributorName
NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
이렇게 쓸모 없는 데이터가 날아 옵니다.
MAX(`mto_action_Bidding`.`price`) as 'maxPrice', 문구 넣으면서
저런 데이터 안 나오게 할수 없나요?<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]</div>
추천
0
0
댓글 2개
maxPirce 에서 싱글따옴표가 있군요.
백쿼트(`)로 바꾸거나 아예 없애주시기 바랍니다.
밑에부분들에도 싱글따옴표가 있습니다.
확인해서 없애주거나 백쿼트로 변경해 주십시오.
백쿼트(`)로 바꾸거나 아예 없애주시기 바랍니다.
밑에부분들에도 싱글따옴표가 있습니다.
확인해서 없애주거나 백쿼트로 변경해 주십시오.

@mysql_query($query);