How to get data between two range from mysql with complex string
up vote
0
down vote
favorite
Employee table
Id Name Salary frame
1 A 5000 MDF-125NH
2 b 10000 MDF-025AH
3 c 15000 MDF-325KH
4 d 20000 MDF-425LH
5 e 25000 MDF-521MH
I want to get data between to Frame i.e(MDF-125NH, MDF-325KH) from MySQL.
I try something but no success.
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) AND (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) )
OR
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING("MDF-125NH", 0, CHARINDEX('-', "MDF-125NH"))
FROM employee
) AND (
SELECT SUBSTRING("MDF-325KH", 0, CHARINDEX('-', "MDF-325KH"))
FROM employee
) )
mysql
add a comment |
up vote
0
down vote
favorite
Employee table
Id Name Salary frame
1 A 5000 MDF-125NH
2 b 10000 MDF-025AH
3 c 15000 MDF-325KH
4 d 20000 MDF-425LH
5 e 25000 MDF-521MH
I want to get data between to Frame i.e(MDF-125NH, MDF-325KH) from MySQL.
I try something but no success.
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) AND (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) )
OR
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING("MDF-125NH", 0, CHARINDEX('-', "MDF-125NH"))
FROM employee
) AND (
SELECT SUBSTRING("MDF-325KH", 0, CHARINDEX('-', "MDF-325KH"))
FROM employee
) )
mysql
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Employee table
Id Name Salary frame
1 A 5000 MDF-125NH
2 b 10000 MDF-025AH
3 c 15000 MDF-325KH
4 d 20000 MDF-425LH
5 e 25000 MDF-521MH
I want to get data between to Frame i.e(MDF-125NH, MDF-325KH) from MySQL.
I try something but no success.
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) AND (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) )
OR
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING("MDF-125NH", 0, CHARINDEX('-', "MDF-125NH"))
FROM employee
) AND (
SELECT SUBSTRING("MDF-325KH", 0, CHARINDEX('-', "MDF-325KH"))
FROM employee
) )
mysql
Employee table
Id Name Salary frame
1 A 5000 MDF-125NH
2 b 10000 MDF-025AH
3 c 15000 MDF-325KH
4 d 20000 MDF-425LH
5 e 25000 MDF-521MH
I want to get data between to Frame i.e(MDF-125NH, MDF-325KH) from MySQL.
I try something but no success.
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) AND (
SELECT SUBSTRING(frame, 0, CHARINDEX('-', frame))
FROM employee
) )
OR
SELECT DISTINCT (id) AS ln
FROM employee c04 BETWEEN (
SELECT SUBSTRING("MDF-125NH", 0, CHARINDEX('-', "MDF-125NH"))
FROM employee
) AND (
SELECT SUBSTRING("MDF-325KH", 0, CHARINDEX('-', "MDF-325KH"))
FROM employee
) )
mysql
mysql
edited 21 hours ago
Used_By_Already
21.6k21838
21.6k21838
asked yesterday
Abid Hussain
6,64822443
6,64822443
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago
add a comment |
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
CREATE TABLE employee(
Id INTEGER NOT NULL PRIMARY KEY
,Name VARCHAR(1) NOT NULL
,Salary INTEGER NOT NULL
,frame VARCHAR(9) NOT NULL
);
INSERT INTO employee(Id,Name,Salary,frame) VALUES (1,'A',5000,'MDF-125NH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (2,'b',10000,'MDF-025AH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (3,'c',15000,'MDF-325KH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (4,'d',20000,'MDF-425LH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (5,'e',25000,'MDF-521MH');
SELECT *
FROM employee
WHERE frame BETWEEN 'MDF-125NH' and 'MDF-325KH'
;
This results is:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
'between' in SQL has a very specific meaning which is the equivalent of:
frame >= 'MDF-125NH' and frame <= 'MDF-325KH'
This definition may not necessarily align with what you expect.
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH | << is this the "between" you want?
| 3 | 3 | c | 15000 | MDF-325KH |
| 4 | 4 | d | 20000 | MDF-425LH |
| 5 | 5 | e | 25000 | MDF-521MH |
+----+----+------+--------+-----------+
This query:
SELECT *
FROM employee
WHERE id BETWEEN (select min(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
AND (select max(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
;
produces this result:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH |
| 3 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
see this demonstrated
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
CREATE TABLE employee(
Id INTEGER NOT NULL PRIMARY KEY
,Name VARCHAR(1) NOT NULL
,Salary INTEGER NOT NULL
,frame VARCHAR(9) NOT NULL
);
INSERT INTO employee(Id,Name,Salary,frame) VALUES (1,'A',5000,'MDF-125NH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (2,'b',10000,'MDF-025AH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (3,'c',15000,'MDF-325KH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (4,'d',20000,'MDF-425LH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (5,'e',25000,'MDF-521MH');
SELECT *
FROM employee
WHERE frame BETWEEN 'MDF-125NH' and 'MDF-325KH'
;
This results is:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
'between' in SQL has a very specific meaning which is the equivalent of:
frame >= 'MDF-125NH' and frame <= 'MDF-325KH'
This definition may not necessarily align with what you expect.
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH | << is this the "between" you want?
| 3 | 3 | c | 15000 | MDF-325KH |
| 4 | 4 | d | 20000 | MDF-425LH |
| 5 | 5 | e | 25000 | MDF-521MH |
+----+----+------+--------+-----------+
This query:
SELECT *
FROM employee
WHERE id BETWEEN (select min(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
AND (select max(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
;
produces this result:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH |
| 3 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
see this demonstrated
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
add a comment |
up vote
0
down vote
CREATE TABLE employee(
Id INTEGER NOT NULL PRIMARY KEY
,Name VARCHAR(1) NOT NULL
,Salary INTEGER NOT NULL
,frame VARCHAR(9) NOT NULL
);
INSERT INTO employee(Id,Name,Salary,frame) VALUES (1,'A',5000,'MDF-125NH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (2,'b',10000,'MDF-025AH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (3,'c',15000,'MDF-325KH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (4,'d',20000,'MDF-425LH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (5,'e',25000,'MDF-521MH');
SELECT *
FROM employee
WHERE frame BETWEEN 'MDF-125NH' and 'MDF-325KH'
;
This results is:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
'between' in SQL has a very specific meaning which is the equivalent of:
frame >= 'MDF-125NH' and frame <= 'MDF-325KH'
This definition may not necessarily align with what you expect.
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH | << is this the "between" you want?
| 3 | 3 | c | 15000 | MDF-325KH |
| 4 | 4 | d | 20000 | MDF-425LH |
| 5 | 5 | e | 25000 | MDF-521MH |
+----+----+------+--------+-----------+
This query:
SELECT *
FROM employee
WHERE id BETWEEN (select min(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
AND (select max(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
;
produces this result:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH |
| 3 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
see this demonstrated
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
add a comment |
up vote
0
down vote
up vote
0
down vote
CREATE TABLE employee(
Id INTEGER NOT NULL PRIMARY KEY
,Name VARCHAR(1) NOT NULL
,Salary INTEGER NOT NULL
,frame VARCHAR(9) NOT NULL
);
INSERT INTO employee(Id,Name,Salary,frame) VALUES (1,'A',5000,'MDF-125NH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (2,'b',10000,'MDF-025AH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (3,'c',15000,'MDF-325KH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (4,'d',20000,'MDF-425LH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (5,'e',25000,'MDF-521MH');
SELECT *
FROM employee
WHERE frame BETWEEN 'MDF-125NH' and 'MDF-325KH'
;
This results is:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
'between' in SQL has a very specific meaning which is the equivalent of:
frame >= 'MDF-125NH' and frame <= 'MDF-325KH'
This definition may not necessarily align with what you expect.
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH | << is this the "between" you want?
| 3 | 3 | c | 15000 | MDF-325KH |
| 4 | 4 | d | 20000 | MDF-425LH |
| 5 | 5 | e | 25000 | MDF-521MH |
+----+----+------+--------+-----------+
This query:
SELECT *
FROM employee
WHERE id BETWEEN (select min(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
AND (select max(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
;
produces this result:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH |
| 3 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
see this demonstrated
CREATE TABLE employee(
Id INTEGER NOT NULL PRIMARY KEY
,Name VARCHAR(1) NOT NULL
,Salary INTEGER NOT NULL
,frame VARCHAR(9) NOT NULL
);
INSERT INTO employee(Id,Name,Salary,frame) VALUES (1,'A',5000,'MDF-125NH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (2,'b',10000,'MDF-025AH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (3,'c',15000,'MDF-325KH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (4,'d',20000,'MDF-425LH');
INSERT INTO employee(Id,Name,Salary,frame) VALUES (5,'e',25000,'MDF-521MH');
SELECT *
FROM employee
WHERE frame BETWEEN 'MDF-125NH' and 'MDF-325KH'
;
This results is:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
'between' in SQL has a very specific meaning which is the equivalent of:
frame >= 'MDF-125NH' and frame <= 'MDF-325KH'
This definition may not necessarily align with what you expect.
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH | << is this the "between" you want?
| 3 | 3 | c | 15000 | MDF-325KH |
| 4 | 4 | d | 20000 | MDF-425LH |
| 5 | 5 | e | 25000 | MDF-521MH |
+----+----+------+--------+-----------+
This query:
SELECT *
FROM employee
WHERE id BETWEEN (select min(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
AND (select max(id) from employee where frame IN ('MDF-125NH','MDF-325KH'))
;
produces this result:
+----+----+------+--------+-----------+
| | Id | Name | Salary | frame |
+----+----+------+--------+-----------+
| 1 | 1 | A | 5000 | MDF-125NH |
| 2 | 2 | b | 10000 | MDF-025AH |
| 3 | 3 | c | 15000 | MDF-325KH |
+----+----+------+--------+-----------+
see this demonstrated
edited 21 hours ago
answered 21 hours ago
Used_By_Already
21.6k21838
21.6k21838
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
add a comment |
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
see: rextester.com/LOYM91730
– Used_By_Already
21 hours ago
add a comment |
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%2f53417007%2fhow-to-get-data-between-two-range-from-mysql-with-complex-string%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
In what sense is something 'between' one frame and another frame
– Strawberry
yesterday
Neither of those queries are valid syntax. Plus you need to specify what you mean as a "frame" which is something you understand, but I know nothing about.
– Used_By_Already
21 hours ago