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 211-220 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
165MumpsVariablenAuflistung aller VariablenS A="This is a test" Set b=1 ZW ZWriteView Update Delete
167Bash ScriptProzeduren, Funktionen, MethodenDeklaration einer Funktion/Prozedur#!/bin/sh do_something() { echo $1 echo $2 } do_something "this is my first" " and second argument" # this is my first and second argumentView Update Delete
188PythonProzeduren, Funktionen, MethodenDeklaration einer Funktion/Prozedurdef this_is_my_function_name(param1): print "do something inside the function " + param1 print "do something outside the function" # call the function this_is_my_function_name("hello world") View Update Delete
279T-SQLDatum, ZeitGestriges DatumSELECT GetDate() SELECT DATEADD(d, -1, GetDate()) SELECT GetDate()-1View Update Delete
282PowerShellDatum, ZeitGestriges Datum$d=(Get-Date).AddDays(-1) $output=Get-Date $d -format "yyyy-MM-dd" # 2014-02-27 View Update Delete
288PL/pgSQLDatum, ZeitGestriges DatumSELECT (now())::date SELECT (now() + interval '-1 day')::dateView Update Delete
293BigQueryDatum, ZeitGestriges DatumSELECT CURRENT_TIMESTAMP() AS today_timestamp , DATE_ADD(CURRENT_DATE(), INTERVAL -1 DAY) AS yesterday_as_dateView Update Delete
170PythonDatum, ZeitGestriges Datumfrom datetime import date, timedelta d=date.today()-timedelta(days=1) output=d.isoformat() # 2014-02-27 View Update Delete
171SQLiteDatum, ZeitGestriges Datumselect date('now','-1 day');View Update Delete
243Bash ScriptDatum, ZeitGestriges Datum#!/bin/sh myDate=$(date +"%Y-%m-%d" -d "yesterday") echo $myDate # 2014-01-13 myDate2=$(date -d @$(( $(date +"%s") - 86400)) +"%Y-%m-%d") # 014-01-13 # today: $(date +"%Y-%m-%d") # 2014-01-14 # Hint: -d parameter doesn't work on Solaris View Update Delete