How to add like condition to existing query in moodle
I have a query with multiple conditions check.
I want to add the condition to check the with like clause.
I tried like this.
$params1['email'] =$DB->sql_like('email', '%'.$voucher_query.'%');
and I am passing the params1 value to query condition. I am getting the query as different and it is not working.
This is the query I am getting.
SELECT COUNT('x') FROM tbl_order WHERE active_ind = ? AND id = ? AND email = ? [array ( 0 => 1, 1 => 236909, 2 => 'email LIKE %emelchor% COLLATE utf8_bin ESCAPE '\\'', )]
the email condition is checking with equals to but not with like exactly. Can anyone help me out.?
Thanks in advance
php sql-like moodle
add a comment |
I have a query with multiple conditions check.
I want to add the condition to check the with like clause.
I tried like this.
$params1['email'] =$DB->sql_like('email', '%'.$voucher_query.'%');
and I am passing the params1 value to query condition. I am getting the query as different and it is not working.
This is the query I am getting.
SELECT COUNT('x') FROM tbl_order WHERE active_ind = ? AND id = ? AND email = ? [array ( 0 => 1, 1 => 236909, 2 => 'email LIKE %emelchor% COLLATE utf8_bin ESCAPE '\\'', )]
the email condition is checking with equals to but not with like exactly. Can anyone help me out.?
Thanks in advance
php sql-like moodle
add a comment |
I have a query with multiple conditions check.
I want to add the condition to check the with like clause.
I tried like this.
$params1['email'] =$DB->sql_like('email', '%'.$voucher_query.'%');
and I am passing the params1 value to query condition. I am getting the query as different and it is not working.
This is the query I am getting.
SELECT COUNT('x') FROM tbl_order WHERE active_ind = ? AND id = ? AND email = ? [array ( 0 => 1, 1 => 236909, 2 => 'email LIKE %emelchor% COLLATE utf8_bin ESCAPE '\\'', )]
the email condition is checking with equals to but not with like exactly. Can anyone help me out.?
Thanks in advance
php sql-like moodle
I have a query with multiple conditions check.
I want to add the condition to check the with like clause.
I tried like this.
$params1['email'] =$DB->sql_like('email', '%'.$voucher_query.'%');
and I am passing the params1 value to query condition. I am getting the query as different and it is not working.
This is the query I am getting.
SELECT COUNT('x') FROM tbl_order WHERE active_ind = ? AND id = ? AND email = ? [array ( 0 => 1, 1 => 236909, 2 => 'email LIKE %emelchor% COLLATE utf8_bin ESCAPE '\\'', )]
the email condition is checking with equals to but not with like exactly. Can anyone help me out.?
Thanks in advance
php sql-like moodle
php sql-like moodle
asked Jan 3 at 14:38
chaitanyachaitanya
13019
13019
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You haven't shown the function call you are doing to retrieve the records, but I'm guessing it looks something like:
$DB->get_records('order', $params);
This simple DB syntax is only suitable for equals comparisons, if you want to do something more complex, you will need to rewrite it to use the get_records_select function instead, e.g.
$select = 'active_ind = :ind AND id = :id AND '.$DB->sql_like('email', ':email');
$email = '%'.$DB->sql_like_escape($voucher_query).'%';
$params = ['ind' => $ind, 'id' => $id, 'email' => $email];
$result = $DB->get_records_select('order', $select, $params);
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024425%2fhow-to-add-like-condition-to-existing-query-in-moodle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You haven't shown the function call you are doing to retrieve the records, but I'm guessing it looks something like:
$DB->get_records('order', $params);
This simple DB syntax is only suitable for equals comparisons, if you want to do something more complex, you will need to rewrite it to use the get_records_select function instead, e.g.
$select = 'active_ind = :ind AND id = :id AND '.$DB->sql_like('email', ':email');
$email = '%'.$DB->sql_like_escape($voucher_query).'%';
$params = ['ind' => $ind, 'id' => $id, 'email' => $email];
$result = $DB->get_records_select('order', $select, $params);
add a comment |
You haven't shown the function call you are doing to retrieve the records, but I'm guessing it looks something like:
$DB->get_records('order', $params);
This simple DB syntax is only suitable for equals comparisons, if you want to do something more complex, you will need to rewrite it to use the get_records_select function instead, e.g.
$select = 'active_ind = :ind AND id = :id AND '.$DB->sql_like('email', ':email');
$email = '%'.$DB->sql_like_escape($voucher_query).'%';
$params = ['ind' => $ind, 'id' => $id, 'email' => $email];
$result = $DB->get_records_select('order', $select, $params);
add a comment |
You haven't shown the function call you are doing to retrieve the records, but I'm guessing it looks something like:
$DB->get_records('order', $params);
This simple DB syntax is only suitable for equals comparisons, if you want to do something more complex, you will need to rewrite it to use the get_records_select function instead, e.g.
$select = 'active_ind = :ind AND id = :id AND '.$DB->sql_like('email', ':email');
$email = '%'.$DB->sql_like_escape($voucher_query).'%';
$params = ['ind' => $ind, 'id' => $id, 'email' => $email];
$result = $DB->get_records_select('order', $select, $params);
You haven't shown the function call you are doing to retrieve the records, but I'm guessing it looks something like:
$DB->get_records('order', $params);
This simple DB syntax is only suitable for equals comparisons, if you want to do something more complex, you will need to rewrite it to use the get_records_select function instead, e.g.
$select = 'active_ind = :ind AND id = :id AND '.$DB->sql_like('email', ':email');
$email = '%'.$DB->sql_like_escape($voucher_query).'%';
$params = ['ind' => $ind, 'id' => $id, 'email' => $email];
$result = $DB->get_records_select('order', $select, $params);
answered Jan 3 at 15:44
davosmithdavosmith
3,8342918
3,8342918
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54024425%2fhow-to-add-like-condition-to-existing-query-in-moodle%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown