Removing milliseconds using datediffCan I concatenate multiple MySQL rows into one field?How do I limit the number of rows returned by an Oracle query after ordering?SQL Server: How to Join to first rowNested select statement in SQL ServerDATEDIFF Getting the previous monthDATEDIFF() Parameter IssueSQL datediff = N in where does not workHow to use DateDiff into only one SELECT statement?Datediff function results in overflow only in WHERE clause?SQL - How to exclude negative values from datediff function
Wordplay subtraction paradox
Optimising the Selection of MaxValue in Association
How can the electric potential be zero at a point where the electric field isn't, if that field can give a test charge kinetic energy?
Why are there no polls of Tom Steyer yet?
Is it okay for a chapter's POV to shift as it progresses?
Which GPUs to get for Mathematical Optimization (if any...)?
How can I obtain a complete list of the kinds of atomic expressions in the Wolfram Language using only the language itself?
Intel 8080-based home computers
Why is Google approaching my VPS machine?
Is straight-up writing someone's opinions telling?
Does inertia keep a rotating object rotating forever, or something else?
How would you say "Sorry, that was a mistake on my part"?
What is this green alien supposed to be on the American covers?
What "fuel more powerful than anything the West (had) in stock" put Laika in orbit aboard Sputnik 2?
When designing an adventure, how can I ensure a continuous player experience in a setting that's likely to favor TPKs?
What is the difference between a Hosaka, Ono-Sendai, and a "deck"?
How can electric field be defined as force per charge, if the charge makes its own, singular electric field?
Is this Android phone Android 9.0 or Android 6.0?
What are the basics of commands in Minecraft Java Edition?
What would be the safest way to drop thousands of small, hard objects from a typical, high wing, GA airplane?
Is there an English equivalent for "Les carottes sont cuites", while keeping the vegetable reference?
Where do the electrons come from to make the carbon stable during bombardment of alpha particles on beryllium
My credit card has no magnetic stripe. Is this a problem in the USA?
Should I be able to keep my company purchased standing desk when I leave my job?
Removing milliseconds using datediff
Can I concatenate multiple MySQL rows into one field?How do I limit the number of rows returned by an Oracle query after ordering?SQL Server: How to Join to first rowNested select statement in SQL ServerDATEDIFF Getting the previous monthDATEDIFF() Parameter IssueSQL datediff = N in where does not workHow to use DateDiff into only one SELECT statement?Datediff function results in overflow only in WHERE clause?SQL - How to exclude negative values from datediff function
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
The query is returning milliseconds which I want to remove
SELECT FOLIO_NUMBER, TERMINAL_NAME, ORDER_ENTRY_TIME, START_LOAD_TIME, END_LOAD_TIME,
datediff(mi, ORDER_ENTRY_TIME, START_LOAD_TIME) AS STAGING_MINUTES,
datediff(mi, START_LOAD_TIME, END_LOAD_TIME) AS LOADING_MINUTES,
datediff(mi, ORDER_ENTRY_TIME, END_LOAD_TIME) AS TERMINAL_MINUTES
FROM ORDERS
JOIN TERMINAL_OWNER ON ORDERS.LOADING_TERMINAL_ID = TERMINAL_OWNER.TERMINAL_ID
WHERE TERMINAL_ID = '1913' AND FOLIO_NUMBER >= '20190101' AND FOLIO_NUMBER <= '20190201'
ORDER BY FOLIO_NUMBER ASC
sql datediff milliseconds
add a comment |
The query is returning milliseconds which I want to remove
SELECT FOLIO_NUMBER, TERMINAL_NAME, ORDER_ENTRY_TIME, START_LOAD_TIME, END_LOAD_TIME,
datediff(mi, ORDER_ENTRY_TIME, START_LOAD_TIME) AS STAGING_MINUTES,
datediff(mi, START_LOAD_TIME, END_LOAD_TIME) AS LOADING_MINUTES,
datediff(mi, ORDER_ENTRY_TIME, END_LOAD_TIME) AS TERMINAL_MINUTES
FROM ORDERS
JOIN TERMINAL_OWNER ON ORDERS.LOADING_TERMINAL_ID = TERMINAL_OWNER.TERMINAL_ID
WHERE TERMINAL_ID = '1913' AND FOLIO_NUMBER >= '20190101' AND FOLIO_NUMBER <= '20190201'
ORDER BY FOLIO_NUMBER ASC
sql datediff milliseconds
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Are you sure you're usingmi
and notms
?
– Derrick Moeller
Mar 27 at 11:44
1
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50
add a comment |
The query is returning milliseconds which I want to remove
SELECT FOLIO_NUMBER, TERMINAL_NAME, ORDER_ENTRY_TIME, START_LOAD_TIME, END_LOAD_TIME,
datediff(mi, ORDER_ENTRY_TIME, START_LOAD_TIME) AS STAGING_MINUTES,
datediff(mi, START_LOAD_TIME, END_LOAD_TIME) AS LOADING_MINUTES,
datediff(mi, ORDER_ENTRY_TIME, END_LOAD_TIME) AS TERMINAL_MINUTES
FROM ORDERS
JOIN TERMINAL_OWNER ON ORDERS.LOADING_TERMINAL_ID = TERMINAL_OWNER.TERMINAL_ID
WHERE TERMINAL_ID = '1913' AND FOLIO_NUMBER >= '20190101' AND FOLIO_NUMBER <= '20190201'
ORDER BY FOLIO_NUMBER ASC
sql datediff milliseconds
The query is returning milliseconds which I want to remove
SELECT FOLIO_NUMBER, TERMINAL_NAME, ORDER_ENTRY_TIME, START_LOAD_TIME, END_LOAD_TIME,
datediff(mi, ORDER_ENTRY_TIME, START_LOAD_TIME) AS STAGING_MINUTES,
datediff(mi, START_LOAD_TIME, END_LOAD_TIME) AS LOADING_MINUTES,
datediff(mi, ORDER_ENTRY_TIME, END_LOAD_TIME) AS TERMINAL_MINUTES
FROM ORDERS
JOIN TERMINAL_OWNER ON ORDERS.LOADING_TERMINAL_ID = TERMINAL_OWNER.TERMINAL_ID
WHERE TERMINAL_ID = '1913' AND FOLIO_NUMBER >= '20190101' AND FOLIO_NUMBER <= '20190201'
ORDER BY FOLIO_NUMBER ASC
sql datediff milliseconds
sql datediff milliseconds
edited Mar 27 at 11:46
Derrick Moeller
2,8342 gold badges14 silver badges35 bronze badges
2,8342 gold badges14 silver badges35 bronze badges
asked Mar 26 at 9:11
Arri BensonArri Benson
143 bronze badges
143 bronze badges
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Are you sure you're usingmi
and notms
?
– Derrick Moeller
Mar 27 at 11:44
1
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50
add a comment |
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Are you sure you're usingmi
and notms
?
– Derrick Moeller
Mar 27 at 11:44
1
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Are you sure you're using
mi
and not ms
?– Derrick Moeller
Mar 27 at 11:44
Are you sure you're using
mi
and not ms
?– Derrick Moeller
Mar 27 at 11:44
1
1
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50
add a comment |
0
active
oldest
votes
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%2f55353373%2fremoving-milliseconds-using-datediff%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55353373%2fremoving-milliseconds-using-datediff%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
Can anyone assist me?
– Arri Benson
Mar 26 at 12:49
Are you sure you're using
mi
and notms
?– Derrick Moeller
Mar 27 at 11:44
1
Please tag your dbms (I suppose Sql Server)
– Joe Taras
Mar 27 at 11:49
mi = minutes; ms = milliseconds. See here: docs.microsoft.com/it-it/sql/t-sql/functions/…
– Joe Taras
Mar 27 at 11:50