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 41-50 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
40MumpsStringsString nach einem Teilstring durchsuchenSet fullstring="This is my string" Set searchfor="my" If $Find(fullstring, searchfor) Do . Write !,"I found it!!" . QuitView Update Delete
82CachéTextdateienTextdatei schreibenSet file=##class(%File).%New("file.txt") Write file.Size Do file.Open("WSN") Do file.WriteLine("This is a line of text")View Update Delete
298EXASOLDatum, ZeitAktuelles Datum/UhrzeitSELECT TO_CHAR(CURRENT_TIMESTAMP, 'YYYY-MM-DDTHH24:MI:SS.FF3') AS iso_date_stringView Update Delete
217T-SQLDatenmengenAnzahl Zeilen Resultset begrenzenSELECT TOP 100 * FROM tableAView Update Delete
117T-SQLDatenbankCSV erstellenSELECT SUBSTRING( (SELECT ',' + CSVItem FROM TableWithItems s ORDER BY s.Name FOR XML PATH('')),2,200000) GO View Update Delete
211SQLiteDatum, ZeitJahr aus Datum extrahierenSELECT strftime('%Y', '2014-08-25') AS Year;View Update Delete
124PL/pgSQLStringsString nach Delimenter zerlegenSELECT split_part('A;B;C;D;E',';',2) -- Result: BView Update Delete
54T-SQLDatenbankStored Function aufrufenSELECT schema.functionname(para1, para2)View Update Delete
64T-SQLDatenbankPrüfen ob temporäre Tabelle existiertSELECT OBJECT_ID ('tempdb..#myTableTable1')View Update Delete
153PL/pgSQLDatum, ZeitAktuelles Datum/UhrzeitSELECT now();View Update Delete