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 261-270 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
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
53T-SQLDatum, ZeitErster und letzter Tag des Monats ermittelnDECLARE @Now SMALLDATETIME ,@FirstDayOfMonth SMALLDATETIME ,@Laufperiode CHAR(21) ,@LastDayOfMonth SMALLDATETIME -- SET @Now = GetDate() SET @Now = {d '2008-02-01'} SET @FirstDayOfMonth = CAST(year(@Now) * 10000 + MONTH(@Now) * 100 + 1 as CHAR(8)) SET @Laufperiode = CONVERT(CHAR(10), @FirstDayOfMonth, 104) + '-' + CONVERT(CHAR(10), DATEADD(mm, 1, @FirstDayOfMonth) - 1, 104) SET @LastDayOfMonth=DATEADD(mm, 1, @FirstDayOfMonth)-1 SELECT [@Laufperiode] = @Laufperiode ,[@FirstDayOfMonth] = @FirstDayOfMonth ,[@LastDayOfMonth] = @LastDayOfMonth View Update Delete
56T-SQLDatum, ZeitAktuelles Datum/UhrzeitSELECT GETDATE(); INSERT INTO table (datetime) VALUES (GETDATE());View Update Delete
121PL/pgSQLDatum, ZeitMonat aus Datum extrahieren-- http://www.postgresql.org/docs/9.1/static/functions-datetime.html select extract(month from now())View Update Delete
122T-SQLDatum, ZeitMonat aus Datum extrahierenSELECT MONTH(GETDATE())View Update Delete
123PL/pgSQLDatum, ZeitAlter zu gegebenen Datum ermittelnselect age({ts '1983-08-21 17:25:00'})View Update Delete
147PL/pgSQLDatum, ZeitJahr aus Datum extrahierenselect extract(year from now())View Update Delete
149PerlDatum, ZeitJahr aus Datum extrahierenuse POSIX qw/EXIT_SUCCESS EXIT_FAILURE/; # Datum Vorbereitung: my $DateTime = POSIX::strftime('%c', localtime(time)); my ($Date, $Time) = split(/\s+/, $DateTime); my ($Day, $Month, $Year) = split(/\./, $Date); my ($Hour, $Minute, $Second) = split(/:/, $Time ); my $Datum = "$Year"."$Month"."$Day"; #oder # my $Datum = "$Day"."$Month"."$Year"; my $Uhrzeit = "$Hour".":"."$Minute".":"."$Second"; View Update Delete