how to write a query in mysql?
up vote
-1
down vote
favorite
my table look like this
Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00
output calculated as
`date count`
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)
Final output
but how to display result like
Date Ses count amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200
i try
SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp
not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view
php mysql
add a comment |
up vote
-1
down vote
favorite
my table look like this
Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00
output calculated as
`date count`
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)
Final output
but how to display result like
Date Ses count amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200
i try
SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp
not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view
php mysql
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Why is2018-11-25
repeated 3 times?
– Salman A
Nov 22 at 8:20
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
my table look like this
Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00
output calculated as
`date count`
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)
Final output
but how to display result like
Date Ses count amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200
i try
SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp
not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view
php mysql
my table look like this
Table
id time_stamp
1 2018-11-21 12:10:00
2 2018-11-22 10:10:00
3 2018-11-22 13:10:00
4 2018-11-23 10:10:00
5 2018-11-23 11:10:00
6 2018-11-23 11:50:00
7 2018-11-24 10:10:00
8 2018-11-25 10:10:00
9 2018-11-25 12:10:00
10 2018-11-25 14:10:00
output calculated as
`date count`
`2018-11-21 1 ----(an=1)`
2018-11-22 2 ----(fn=1,an=1)
2018-11-23 1 ----(fn=0,an=1)
2018-11-24 1 ----(fn=1,an=0)
2018-11-25 2 ----(fn=1,an=1)
Final output
but how to display result like
Date Ses count amount
2018-11-11 AN 1 0
2018-11-11 AN 1 100
2018-11-12 AN 2 0
2018-11-12 FN 2 200
i try
SELECT DATE_FORMAT(date(`time_stamp`),'%d-%m-%Y') as time_stamp,
case when time(time_stamp) between '01:00:00' and '12:00:00' then 'FN'
when time(time_stamp) between '12:00:00' and '24:00:00' then 'AN'
end as period
from overall a,TEST1_VIEW d WHERE
date(a.time_stamp)=d.timestamp order by time_stamp
not able to get the exact result.need suggestion. how to solve this error. i created a view file as test1_view
php mysql
php mysql
edited Nov 23 at 10:17
Salman A
173k65330417
173k65330417
asked Nov 22 at 8:09
antony
16
16
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Why is2018-11-25
repeated 3 times?
– Salman A
Nov 22 at 8:20
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19
add a comment |
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Why is2018-11-25
repeated 3 times?
– Salman A
Nov 22 at 8:20
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Why is
2018-11-25
repeated 3 times?– Salman A
Nov 22 at 8:20
Why is
2018-11-25
repeated 3 times?– Salman A
Nov 22 at 8:20
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The following will group DATETIME
values by AN and FN:
SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END
If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p')
.
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
The following will group DATETIME
values by AN and FN:
SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END
If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p')
.
add a comment |
up vote
0
down vote
The following will group DATETIME
values by AN and FN:
SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END
If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p')
.
add a comment |
up vote
0
down vote
up vote
0
down vote
The following will group DATETIME
values by AN and FN:
SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END
If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p')
.
The following will group DATETIME
values by AN and FN:
SELECT
DATE(time_stamp) AS date,
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END AS sess,
COUNT(*) AS co,
SUM(some_column) AS sm
FROM t
GROUP BY
DATE(time_stamp),
CASE
WHEN HOUR(time_stamp) BETWEEN 0 AND 11 THEN 'FN'
WHEN HOUR(time_stamp) BETWEEN 12 AND 23 THEN 'AN'
END
If AN and FN are indeed PM and AM then you could simply group by DATE_FORMAT(time_stamp, '%p')
.
edited Nov 23 at 10:34
answered Nov 22 at 8:17
Salman A
173k65330417
173k65330417
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53426401%2fhow-to-write-a-query-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
Incidentally, there is no '24:00:00' . A day runs from '00:00:00' to '23:59:59'
– Strawberry
Nov 22 at 8:13
Why is
2018-11-25
repeated 3 times?– Salman A
Nov 22 at 8:20
@antony you can always edit your question to more detail e.g. expected out and perhaps more explanation.
– Salman A
Nov 23 at 10:19