Manage PlItems

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.

Advanced Search
Displaying 11-20 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
290T-SQLDatum, ZeitAktuelles Datum/UhrzeitDECLARE @newDT DATETIME SET @newDT = CAST('2021-01-01 01:23:45' AS DATETIME) SELECT FORMAT(GETDATE(), 'yyyy-MM-dd', 'En') SELECT FORMAT(GETDATE(), 'yyyy-MM-dd HH:mm:ss', 'En')View Update Delete
297BigQueryDatum, ZeitAktuelles Datum/UhrzeitSELECT FORMAT_TIMESTAMP("%FT%H:%M:%E3S", CURRENT_DATETIME()) AS iso_date_stringView Update Delete
298EXASOLDatum, ZeitAktuelles Datum/UhrzeitSELECT TO_CHAR(CURRENT_TIMESTAMP, 'YYYY-MM-DDTHH24:MI:SS.FF3') AS iso_date_stringView Update Delete
52JavaDatum, ZeitAktuelles Datum/Uhrzeit SimpleDateFormat formatter = new SimpleDateFormat ("yyyy.MM.dd 'at' HH:mm:ss "); Date currentTime = new Date(); System.out.println("Zeit und Datum : " + formatter.format(currentTime));View Update Delete
56T-SQLDatum, ZeitAktuelles Datum/UhrzeitSELECT GETDATE(); INSERT INTO table (datetime) VALUES (GETDATE());View Update Delete
153PL/pgSQLDatum, ZeitAktuelles Datum/UhrzeitSELECT now();View Update Delete
155PythonDatum, ZeitAktuelles Datum/Uhrzeitfrom datetime import date iso_datum = date.today().isoformat() output = iso_datum print output # 2013-12-05 # or import datetime datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") # 2013-12-05_18-09-10View Update Delete
163Bash ScriptDatum, ZeitAktuelles Datum/Uhrzeit#!/bin/sh myDate=$(date +"%Y-%m-%d") echo $myDate # 2014-01-14 echo $(date +"%Y-%m-%d_%a") # with short dayname # 2017-01-05_Do (Do => German, localized short of Tuesday) echo $(date +"%Y-%m-%d %H:%M:%S") # 2014-01-14 22:15 # List of formatting options: https://www.cyberciti.biz/faq/linux-unix-formatting-dates-for-display/View Update Delete
169SQLiteDatum, ZeitAktuelles Datum/Uhrzeitselect date('now'); select time('now'); select datetime('now');View Update Delete
200JavaScriptDatum, ZeitAktuelles Datum/Uhrzeitdate = new Date(); // Sat Jun 14 2014 13:15:27 GMT+0200 (CEST) dateStringISO = date.toISOString(); // "2014-06-14T11:15:27.097Z" // Attention: Time is different because of the timezone date.toISOString().substring(0,10); //"2014-06-14" dateStringISO.split("T")[1]; // 11:15:27.097ZView Update Delete