Hello to all, welcome to therichpost.com. In this post, I will tell you, How to make like query in pdo mysql? PDO means PHP Data Object. PDO is more secure and it is opps based.
Here is the working like query in pdo mysql and you can do like this query:
<?php
//You can define variable like this
$datetime = $datetime.”%”;
//I am using joins also in this query$QUERY = $DBH->prepare(“SELECT A.*,
C.objectId AS ’empId’, C.name AS ’empName’, E.name AS ‘placeSubServiceName’,
D.objectId AS ‘customerId’, D.firstName, D.lastName, E.cost, E.duration FROM booking A
JOIN employee C ON C.objectId = A.employeeId
JOIN user D ON D.objectId = A.userId
JOIN placesubservice E ON E.objectId = A.placeSubServiceId
WHERE A.placeId = $PLACE_ID AND A.employeeId in($STAFF_ID) AND
//Here you can use like statement like this
A.startDateTime LIKE ‘”.$datetime.”‘ AND A.status = 1 ORDER BY DATE(A.startDateTime) ASC”);
$QUERY->execute();
?>
There are so many tricky code in PDO and I will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
good post
Thank you Javish