Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > Group concat ถ้าไม่ได้ใส่ ค่าสามารถให้เป็นค่า null เวลาดึง List ได้ไหมครับ



 

Group concat ถ้าไม่ได้ใส่ ค่าสามารถให้เป็นค่า null เวลาดึง List ได้ไหมครับ

 



Topic : 115378



โพสกระทู้ ( 6 )
บทความ ( 0 )



สถานะออฟไลน์




fix

ตาม Table ด้านบนผมสามารถดึงข้อมูลมาแสดงได้แล้ว แต่ว่าดันมีปัญหานิดหน่อยครับ สมมุติ Meta_key ค่า last_name ไม่ได้กรอก เราสามารถให้มันแทนเป็นค่าว่างได้ไหมครับ เวลาดึง List
มัน Error ตรง List ที่ใช้ดึงอะครับ

ำพพนพ


อันนี้ Code ครับ

Code (PHP)
<?php
//Query SQL
$sql = "SELECT switzer_usermeta.user_id as id,switzer_user_login_log.user_email as email,switzer_user_login_log.time as Time,switzer_user_login_log.ip as Ip,switzer_user_login_log.user_role as role, switzer_usermeta.meta_key , group_concat(COALESCE(switzer_usermeta.meta_value, '') Order by FIELD(switzer_usermeta.meta_key,'first_name','last_name','phone','address','city','state','postcode','ssr_payment_type','ssr_card_expiry_date','ssr_card_last_4_digits','switzer_sale_action','switzer_sale_status','switzer_note_type','wp-last-login') SEPARATOR '|') as fullname 
from switzer_usermeta
JOIN switzer_user_login_log
ON switzer_usermeta.user_id = switzer_user_login_log.uid
where switzer_usermeta.meta_key in('first_name','last_name','phone','address','city','state','postcode','ssr_payment_type','ssr_card_expiry_date','ssr_card_last_4_digits','switzer_sale_action','switzer_sale_status','switzer_note_type','wp-last-login')
group by switzer_usermeta.user_id order by switzer_usermeta.user_id asc";

if(!$result = $db->query($sql)){
    die('There was an error running the query [' . $db->error . ']');
}
?>

//Table
<table width="100%" border="1">
<tr>
<th width="91"> <div align="center">ID </div></th>
<th width="120"> <div align="center">Name </div></th>
<th width="120"> <div align="center">Lastname </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="198"> <div align="center">Role </div></th>
<th width="198"> <div align="center">Phone </div></th>
<th width="300"> <div align="center">Address </div></th>
<th width="100"> <div align="center">City </div></th>
<th width="100"> <div align="center">State </div></th>
<th width="100"> <div align="center">Postcode </div></th>
<th width="150"> <div align="center">Payment Type </div></th>
<th width="120"> <div align="center">Card Expiry </div></th>
<th width="91"> <div align="center">Card Last 4 Digits </div></th>
<th width="120"> <div align="center">Sale Action </div></th>
<th width="120"> <div align="center">Sale Status </div></th>
<th width="120"> <div align="center">Note Type </div></th>
<th width="130"> <div align="center">Last Logged </div>
<th width="170"> <div align="center">Ip </div>
<th width="91"> <div align="center">Edit </div></th>

//Loop
<?php
while($row = $result->fetch_assoc())


     **///บรรทัดที่ Error เวลาข้อมูลมาไม่ครบอะครับ
list($fname,$lname,$phone,$address,$city,$state,$postcode,$ssr_payment_type,$ssr_card_expiry_date,$ssr_card_last_4_digits,$switzer_sale_action,$switzer_sale_status,$switzer_note_type,$wplast) = explode("|",$row["fullname"]);
?>


<tr>
<td><div align="center"><?=$row['id'];?></div></td><?/*=$objResult["user_id"];*/?>
<td><?=$fname;?></td>
<td><?=$lname;?></td>
<td><?=$row['email'];?></td>
<td><?=$row['role'];?></td>
<td><?=$phone;?></td>
<td><?=$address;?></td>
<td><?=$city;?></td>
<td><?=$state;?></td>
<td><?=$postcode;?></td>
<td><?=$ssr_payment_type;?></td>
<td><?=$ssr_card_expiry_date;?></td>
<td><?=$ssr_card_last_4_digits;?></td>
<td><?=$switzer_sale_action;?></td>
<td><?=$switzer_sale_status;?></td>
<td><?=$switzer_note_type;?></td>
<td><?=$wplast;?></td>
<td><?=$row['Ip'];?></td>
<td><div align="center"><a href="edit.php?edit_id=<?=$row['id'];?>"> Edit</a></div></td><?/*=$objResult["user_id"];*/?>
</tr>
<?php

}
?>
</table>




Tag : PHP, MySQL, Windows









ประวัติการแก้ไข
2015-03-24 21:36:12
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2015-03-24 21:35:20 By : itiskaka View : 1006 Reply : 2
 

 

No. 1



โพสกระทู้ ( 9,586 )
บทความ ( 2 )



สถานะออฟไลน์


วงเล็บปิดหายไปตัว ตรง group_concat






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-24 21:52:47 By : Chaidhanan
 


 

No. 2



โพสกระทู้ ( 6 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 1 เขียนโดย : Chaidhanan เมื่อวันที่ 2015-03-24 21:52:47
รายละเอียดของการตอบ ::
ปิดตรง SEPARATOR '|') ครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2015-03-24 21:57:27 By : itiskaka
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : Group concat ถ้าไม่ได้ใส่ ค่าสามารถให้เป็นค่า null เวลาดึง List ได้ไหมครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่