MySQL- tutoriaal

MySQL TUIS MySQL-inleiding MySQL RDBMS

MySQL SQL

MySQL SQL MySQL KIES MySQL WAAR MySQL EN, OF, NIE MySQL BESTEL DEUR MySQL VOEG IN MySQL NULL-waardes MySQL-OPDATERING MySQL SKEE MySQL-LIMIET MySQL MIN en MAX MySQL COUNT, AVG, SUM MySQL LIKE MySQL Wildcards MySQL IN MySQL TUSSEN MySQL aliasse MySQL sluit aan MySQL BINNE SLUIT AAN MySQL LOS LINKS AAN MySQL REGS SLUIT AAN MySQL KRUIS SLUIT AAN MySQL Self Sluit aan MySQL UNIE MySQL GROEP DEUR MySQL HET MySQL BESTAAN MySQL ENIGE, ALMAL MySQL INSERT SELECT MySQL-GEVAL MySQL nul-funksies MySQL-kommentaar MySQL-operateurs

MySQL- databasis

MySQL Skep DB MySQL Drop DB MySQL Skep tabel MySQL Drop Table MySQL Verander Tabel MySQL-beperkings MySQL nie nul nie MySQL Uniek MySQL-primêre sleutel MySQL buitelandse sleutel MySQL-tjek MySQL verstek MySQL Skep indeks MySQL Outo-verhoging MySQL-datums MySQL-aansigte

MySQL- verwysings

MySQL-datatipes MySQL-funksies

MySQL voorbeelde

MySQL voorbeelde MySQL Vasvra MySQL-oefeninge

MySQL SUBTIME() Funksie

❮ MySQL-funksies

Voorbeeld

Trek 5,000001 sekondes af en gee die datumtyd terug:

SELECT SUBTIME("2017-06-15 10:24:21.000004", "5.000001");

Definisie en gebruik

Die SUBTIME()-funksie trek tyd af van 'n tyd/datumtyd-uitdrukking en gee dan die nuwe tyd/datumtyd terug.

Sintaksis

SUBTIME(datetime, time_interval)

Parameterwaardes

Parameter Description
datetime Required. The time or datetime to be modified
time_interval Required. The time interval to subtract from datetime. Both positive and negative values are allowed

Tegniese besonderhede

Werk in: Van MySQL 4.0

Meer voorbeelde

Voorbeeld

Trek 3 uur, 2 minute, 5,000001 sekondes af en gee die datumtyd terug:

SELECT SUBTIME("2017-06-15 10:24:21.000004", "3:2:5.000001");

Voorbeeld

Trek 5 sekondes af en gee die tyd terug:

SELECT SUBTIME("10:24:21", "5");

Voorbeeld

Trek 3 minute af en gee die tyd terug:

SELECT SUBTIME("10:24:21", "300");

Voorbeeld

Voeg 3 uur, 2 minute en 5 sekondes by en gee die tyd terug:

SELECT SUBTIME("10:24:21", "-3:2:5");

❮ MySQL-funksies