CASE in WHERE clause in MySQLOracle SQL - CASE in a WHERE clauseDoes adherence to the DRY principle justify...
Sometimes a banana is just a banana
The need of reserving one's ability in job interviews
Should I use HTTPS on a domain that will only be used for redirection?
Practical reasons to have both a large police force and bounty hunting network?
Where is this quote about overcoming the impossible said in "Interstellar"?
In which way proportional valves are controlled solely by current?
A peculiar integral identity
If nine coins are tossed, what is the probability that the number of heads is even?
A bug in Excel? Conditional formatting for marking duplicates also highlights unique value
Is divide-by-zero a security vulnerability?
When to use mean vs median
Caulking a corner instead of taping with joint compound?
Did Amazon pay $0 in taxes last year?
Ahoy, Ye Traveler!
PTIJ: What’s wrong with eating meat and couscous?
Wardrobe above a wall with fuse boxes
Meaning of word ягоза
When do _WA_Sys_ statistics Get Updated?
Correct physics behind the colors on CD (compact disc)?
How to merge row in the first column in LaTeX
Formatting a table to look nice
Split a number into equal parts given the number of parts
1970s scifi/horror novel where protagonist is used by a crablike creature to feed its larvae, goes mad, and is defeated by retraumatising him
Reason why dimensional travelling would be restricted
CASE in WHERE clause in MySQL
Oracle SQL - CASE in a WHERE clauseDoes adherence to the DRY principle justify dynamic SQL?Mysql int vs varchar as primary key (InnoDB Storage Engine?How to write signal function in MySQL that can be called from Triggers and Stored Functions?How to optimize indexes on MySQL query with various sortsWhat's the best design for a logical structure that contains different properties of various types for different entity categories? (MySQL or NoSQL)Update a date_modified MySQL Record Field ONLY when other fields have changed using CASE statement not working?UPDATE waits for lock too long after SELECT in MySQL (Innodb)Mysql trigger to update if date match and insert if no match all BEFORE INSERTPerformance difference between Text and Varchar in Mysql
I'm working in a project with MySQL and using stored procedures to make my SELECT queries,
so all of them have this same structure:
DELIMITER $$
CREATE PROCEDURE `case_in_where`(IN `column_index` INT, IN `value` VARCHAR(255))
BEGIN
SELECT * FROM `foo`
WHERE
CASE
WHEN `column_index` IS NULL THEN 1
WHEN `column_index` = 1 THEN `foo`.`column_1` = `value`
WHEN `column_index` = 2 THEN `foo`.`column_2` = `value`
END
;
END $$
DELIMITER ;
But I have seen that when people ask for help using this approach, usually the answers are that it should use AND, OR instead or Dynamic SQL. So, this way is not correct? It's a bad practice or have any difference in performance?
I should use AND, OR or Dynamic SQL or make different queries for every case?
Thanks beforehand.
mysql performance stored-procedures case where
New contributor
add a comment |
I'm working in a project with MySQL and using stored procedures to make my SELECT queries,
so all of them have this same structure:
DELIMITER $$
CREATE PROCEDURE `case_in_where`(IN `column_index` INT, IN `value` VARCHAR(255))
BEGIN
SELECT * FROM `foo`
WHERE
CASE
WHEN `column_index` IS NULL THEN 1
WHEN `column_index` = 1 THEN `foo`.`column_1` = `value`
WHEN `column_index` = 2 THEN `foo`.`column_2` = `value`
END
;
END $$
DELIMITER ;
But I have seen that when people ask for help using this approach, usually the answers are that it should use AND, OR instead or Dynamic SQL. So, this way is not correct? It's a bad practice or have any difference in performance?
I should use AND, OR or Dynamic SQL or make different queries for every case?
Thanks beforehand.
mysql performance stored-procedures case where
New contributor
add a comment |
I'm working in a project with MySQL and using stored procedures to make my SELECT queries,
so all of them have this same structure:
DELIMITER $$
CREATE PROCEDURE `case_in_where`(IN `column_index` INT, IN `value` VARCHAR(255))
BEGIN
SELECT * FROM `foo`
WHERE
CASE
WHEN `column_index` IS NULL THEN 1
WHEN `column_index` = 1 THEN `foo`.`column_1` = `value`
WHEN `column_index` = 2 THEN `foo`.`column_2` = `value`
END
;
END $$
DELIMITER ;
But I have seen that when people ask for help using this approach, usually the answers are that it should use AND, OR instead or Dynamic SQL. So, this way is not correct? It's a bad practice or have any difference in performance?
I should use AND, OR or Dynamic SQL or make different queries for every case?
Thanks beforehand.
mysql performance stored-procedures case where
New contributor
I'm working in a project with MySQL and using stored procedures to make my SELECT queries,
so all of them have this same structure:
DELIMITER $$
CREATE PROCEDURE `case_in_where`(IN `column_index` INT, IN `value` VARCHAR(255))
BEGIN
SELECT * FROM `foo`
WHERE
CASE
WHEN `column_index` IS NULL THEN 1
WHEN `column_index` = 1 THEN `foo`.`column_1` = `value`
WHEN `column_index` = 2 THEN `foo`.`column_2` = `value`
END
;
END $$
DELIMITER ;
But I have seen that when people ask for help using this approach, usually the answers are that it should use AND, OR instead or Dynamic SQL. So, this way is not correct? It's a bad practice or have any difference in performance?
I should use AND, OR or Dynamic SQL or make different queries for every case?
Thanks beforehand.
mysql performance stored-procedures case where
mysql performance stored-procedures case where
New contributor
New contributor
New contributor
asked 1 min ago
Deus ArcanaDeus Arcana
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
Deus Arcana is a new contributor. Be nice, and check out our Code of Conduct.
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%2fdba.stackexchange.com%2fquestions%2f231510%2fcase-in-where-clause-in-mysql%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Deus Arcana is a new contributor. Be nice, and check out our Code of Conduct.
Deus Arcana is a new contributor. Be nice, and check out our Code of Conduct.
Deus Arcana is a new contributor. Be nice, and check out our Code of Conduct.
Deus Arcana is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Database Administrators Stack Exchange!
- 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%2fdba.stackexchange.com%2fquestions%2f231510%2fcase-in-where-clause-in-mysql%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