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>
|
댓글을 작성하시려면 로그인이 필요합니다.
프로그램
태그 필터 (최대 3개)
전체
개발자
소스
기타
mysql
팁자료실
javascript
php
linux
flash
정규표현식
jquery
node.js
mobile
웹서버
os
프로그램
강좌
썸네일
이미지관련
도로명주소
그누보드5
기획자
견적서
계약서
기획서
마케팅
제안서
seo
통계
서식
통계자료
퍼블리셔
html
css
반응형
웹접근성
퍼블리싱
표준화
반응형웹
홈페이지기초
부트스트랩
angularjs
포럼
스크린리더
센스리더
개발자톡
개발자팁
퍼블리셔톡
퍼블리셔팁
기획자톡
기획자팁
프로그램강좌
퍼블리싱강좌
댓글 2개
백쿼트(`)로 바꾸거나 아예 없애주시기 바랍니다.
밑에부분들에도 싱글따옴표가 있습니다.
확인해서 없애주거나 백쿼트로 변경해 주십시오.