 |
SQL JOIN 2 ตารางที่มีชื่อฟิลด์ เหมือนกัน กับการ ค้นหาคำ WHERE LIKE |
|
 |
|
|
 |
 |
|
ตัวอย่างของจริงค่ะ
<script type="text/javascript" language="javascript" >
$(document).ready(function() {
var dataTable = $('#employee-grid').DataTable( {
"processing": true,
"serverSide": true,
"Paginate": true,
"LengthChange": false,
"Filter": false,
"Info": false,
"order": [[ 2, "desc" ]], //เรียง
"ajax":{
url :"preCC-grid-data.php", // json datasource
type: "post", // method , by default get
error: function(){ // error handling
$(".employee-grid-error").html("");
$("#employee-grid").append('<tbody class="employee-grid-error"><tr><th colspan="3">No data found in the server</th></tr></tbody>');
$("#employee-grid_processing").css("display","none");
}
},
"fnDrawCallback": function () {
//alert('test');
$(".example1").fancybox({
'maxWidth' : 800,
'maxHeight' : 600,
'fitToView' : false,
'width' : '100%',
'height' : '100%',
'autoSize' : false,
'closeClick' : false,
'openEffect' : 'none',
'closeEffect' : 'none',
'type' : 'iframe'
});
}
} );
} );
</script>
<div id="dt_example">
<div id="demo">
<table id="employee-grid" cellpadding="0" cellspacing="0" border="0" class="display" width="100%">
<thead>
<tr>
<th width="10%">ตอบรับ PO</th>
<th width="10%">วันที่ทำใบเสนอราคา</th>
<th width="20%">เลขที่ใบเสนอราคา</th>
<th width="30%">บริษัทลูกค้า</th>
<th width="15%">Contact By</th>
<th width="15%">แก้ไข </th>
</tr>
</thead>
</table>
<!-------------------------------------------------------------------------------------->
</div>
preCC-grid-data.php
<?php if (!isset($_SESSION)) {
@session_start();
}
?>
<?php include('../Connections/conndb.php');
$strSQL = "SELECT * FROM employee WHERE Eusername = '".$_SESSION['Eusername']."' AND Edepart = '".$_SESSION['Edepart']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
$employee = $objResult['Eid'];
/* Database connection start */
$servername = "localhost";
$username = "root";
$password = "4321";
$dbname = "salecentral";
$conn = mysqli_connect($servername, $username, $password, $dbname) or die("Connection failed: " . mysqli_connect_error());
mysqli_set_charset($conn,"utf8");
/* Database connection end */
// storing request (ie, get/post) global array to a variable
$requestData= $_REQUEST;
$columns = array(
// datatable column index => database column name
0 =>'checkPO',
1 =>'Sadate',
2 =>'Sacode',
3 =>'name_partner',
4 => 'contactby'
);
// getting total number records without any search
$sql = "SELECT checkPO,Sadate, Sacode, name_partner, contactby, nickname";
$sql.=" FROM sale,employee,partner,contact where sale.id_contact=contact.id_contact AND sale.Eid=employee.Eid AND sale.id_partner=partner.id_partner";
$sql.=" UNION ALL SELECT checkPO,Sadate, Sacode, name_partner, contactby, nickname";
$sql.=" FROM cc_edit_sale,employee,partner,contact where cc_edit_sale.id_contact=contact.id_contact AND cc_edit_sale.Eid=employee.Eid AND cc_edit_sale.id_partner=partner.id_partner";
$query=mysqli_query($conn, $sql) or die("preCC-grid-data.php: get error");
$totalData = mysqli_num_rows($query);
$totalFiltered = $totalData; // when there is no search parameter then total number rows = total number filtered rows.
$sql = "SELECT checkPO,Sadate, Sacode, name_partner, contactby, nickname";
$sql.=" FROM sale,employee,partner,contact where sale.id_contact=contact.id_contact AND sale.Eid=employee.Eid AND sale.id_partner=partner.id_partner";
$sql.=" UNION ALL SELECT checkPO,Sadate, Sacode, name_partner, contactby, nickname";
$sql.=" FROM cc_edit_sale,employee,partner,contact where cc_edit_sale.id_contact=contact.id_contact AND cc_edit_sale.Eid=employee.Eid AND cc_edit_sale.id_partner=partner.id_partner AND 1=1";
if( !empty($requestData['search']['value']) ) { // if there is a search parameter, $requestData['search']['value'] contains search parameter
$sql.=" AND ( checkPO LIKE '%".$requestData['search']['value']."%' ";
$sql.=" OR Sadate LIKE '%".$requestData['search']['value']."%' ";
$sql.=" OR Sacode LIKE '%".$requestData['search']['value']."%' ";
$sql.=" OR name_partner LIKE '%".$requestData['search']['value']."%' ";
$sql.=" OR contactby LIKE '%".$requestData['search']['value']."%' )";
}
$query=mysqli_query($conn, $sql) or die("preCC-grid-data.php: get error");
$totalFiltered = mysqli_num_rows($query); // when there is a search parameter then we have to modify total number filtered rows as per search result.
$sql.=" ORDER BY ". $columns[$requestData['order'][0]['column']]." ".$requestData['order'][0]['dir']." LIMIT ".$requestData['start']." ,".$requestData['length']." ";
/* $requestData['order'][0]['column'] contains colmun index, $requestData['order'][0]['dir'] contains order such as asc/desc */
$query=mysqli_query($conn, $sql) or die("preCC-grid-data.php: get error");
$data = array();
while( $row=mysqli_fetch_array($query) ) { // preparing an array
//$idPO= $row["idPO"];
$nestedData=array();
if ($_SESSION['Eusername']== "cw03" || ($_SESSION['Eusername']== "cc62") || ($_SESSION['Eusername']== "cc44") ||$_SESSION['Edepart']== "reader")
{
if( strpos( $row["Sacode"], "Rev" )) {
if ($row['checkPO']=='1') {
$nestedData[] = "<a href='checkPO_CC_edit.php?idx=$row[Sacode]'><img src='../images/icon_correct.gif'/></a>";
}
else {
$nestedData[] = "<a href='checkPO_CC_edit.php?idx=$row[Sacode]'><img src='../images/icon_wrong.gif'/></a>";
}
}
else {
if ($row['checkPO']=='1') {
$nestedData[] = "<a href='checkPO_CC.php?idx=$row[Sacode]'><img src='../images/icon_correct.gif'/></a>";
}
else {
$nestedData[] = "<a href='checkPO_CC.php?idx=$row[Sacode]'><img src='../images/icon_wrong.gif'/></a>";
}
}
}
else {
if ($row['checkPO']=='1'){ $nestedData[] = "<img src='../images/icon_correct.gif'/>";} else { $nestedData[] = "<img src='../images/icon_wrong.gif'/>";}
}
/*if($row['checkPO']=='1') { $nestedData[] = "<a href='checkPO_CC_edit.php?idx=$row[Sacode]'><img src='../images/icon_correct.gif'/></a>";}
if($row['checkPO']=='0') { $nestedData[] = "<img src='../images/icon_wrong.gif'/>";} */
list($Year,$month,$day) = explode("-",$row['Sadate']);
$nestedData[] = (int)$day."/".(int)$month."/".($Year);
$nestedData[] = $row["Sacode"];
$nestedData[] = $row["name_partner"];
$nestedData[] = $row["contactby"]."(".$row["nickname"].")";
$nestedData[] = "<a href='editQuotationCC-before.php?idx=$row[Sacode]' target='_self'><img src='../images/edit.png' width='30' title='แก้ไข' border='0' ></a><a class='example1' href='viewCC.php?idx=$row[Sacode]'><img src='../images/search.png' width='30' title='ดูใบเสนอราคา' border='0' ></a><a href='printCC.php?idx=$row[Sacode]'><img src='../images/print.png' width='30' title='พิมพ์ใบเสนอราคา' border='0' onClick='return Conf(this)' ></a>";
$data[] = $nestedData;
}
$json_data = array(
"draw" => intval( $requestData['draw'] ), // for every request/draw by clientside , they send a number as a parameter, when they recieve a response/data they first check the draw number, so we are sending same number in draw.
"recordsTotal" => intval( $totalData ), // total number of records
"recordsFiltered" => intval( $totalFiltered ), // total number of records after searching, if there is no searching then totalFiltered = totalData
"data" => $data // total data array
);
echo json_encode($json_data); // send data as json format
?>

|
 |
 |
 |
 |
Date :
2016-09-07 11:16:20 |
By :
bsaranya |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รบกวนผู้รู้ช่วยหน่อยค่ะ
|
 |
 |
 |
 |
Date :
2016-09-10 10:28:23 |
By :
bsaranya |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เหมือนผู้รู้จะแนะ ไปแล้วนะ ลองหาอ่านดู
แล้วช่วยเหลือตัวเองให้มากๆ
|
 |
 |
 |
 |
Date :
2016-09-10 20:26:38 |
By :
goragod |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองดูแล้ว มันไม่สามารถ ค้นหา ได้ค่ะ
SELECT checkPO AS onePO ...
FROM sale
UNION SELECT checkPO AS twoPO ...
FROM cc_edit_sale
|
 |
 |
 |
 |
Date :
2016-09-20 10:01:08 |
By :
bsaranya |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ทำได้แล้วค่ะ
|
 |
 |
 |
 |
Date :
2016-09-20 10:19:01 |
By :
bsaranya |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ผมว่าน่าจะเข้าใจผิดเรื่องการ join กับ การ union นะครับ
ถ้า join ทั้งสองตารางจะมาอยู่ record เดียวกัน (แบบ ขนาน)
tb1rec1 tb2rec1
tb1rec2 tb2rec2
แต่ถ้า เป็นการ union จะเป็น สองตาราง มารวมกัน แต่คนละ record
tb1rec1
tb1rec2
tb2rec1
tb2rec2
ลองดูความต้องการให้ดีครับ
ถ้าเป็นการ union
คงต้องใช้ select ซ้อน select เพื่อให้ได้ค่าที่ต้องาร
Code (SQL)
select * from(
select sacode,.... from table1 where ....
select sacode,.... from table2 where ....
) as tmp
where sacode like '%..%'
|
 |
 |
 |
 |
Date :
2016-09-20 10:23:42 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เพิ่มอีกนิด คุณ imnong ยังไม่ปรับปรุงความคิดเลยนะครับ
เรื่องการ คิวรี่ เอา result ทั้งหมด แล้วมานับจำนวน row
ควรจะใช้ select count() ได้แล้วนะครับ เห็นเข้ามาอ่านเข้ามาถามหลายรอบ ก็ยังเหมือนเดิม
|
 |
 |
 |
 |
Date :
2016-09-20 10:33:11 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|