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 281-290 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
269PL/pgSQLDatenbankUPDATE SQL mit JOINUPDATE TableToBeUpdated SET myField1 = 'Update this field' FROM ( SELECT * FROM JoinedTable WHERE cond1 = 1 ) J WHERE J.ID = TableToBeUpdated.ID ; View Update Delete
270T-SQLDatenbankUPDATE SQL mit JOINUPDATE UPD_TABLE SET UPD_TABLE.myField1 = 'Update this field' FROM TableToBeUpdated UPD_TABLE LEFT JOIN ( SELECT * FROM JoinedTable WHERE cond1 = 1 ) J WHERE J.ID = UPD_TABLE.ID ;View Update Delete
271MySQLDatenbankUPDATE SQL mit JOINUPDATE TableToBeUpdated UPD_TABLE INNER JOIN JoinedTable J ON J.id = UPD_TABLE.id SET UPD_TABLE.myField1 = 'Update this field' ;View Update Delete
300BigQueryDatenbankUPDATE SQL mit JOINUPDATE `project.dataset.table1` t1 SET t1.target_column = t2.source_column FROM `project.dataset.table2` t2 WHERE t1.join_key = t2.join_key;View Update Delete
273T-SQLStringsLeerzeichen vor/hinter String entfernenSELECT LTRIM(RTRIM(' x text x '))View Update Delete
274PythonStringsLeerzeichen vor/hinter String entfernenmyText = " x text x \r\n" print myText.strip()View Update Delete
275PL/pgSQLDatenbankStored Procedure anlegen/löschenCREATE OR REPLACE FUNCTION increment(i INT) RETURNS void AS $$ BEGIN INSERT INTO accounts (id,name, balance) VALUES (i, 'Test', 1200); END; $$ LANGUAGE plpgsql; DROP FUNCTION increment(i INT);View Update Delete
276T-SQLDatenbankStored Procedure anlegen/löschenCREATE PROCEDURE increment(@i INT) AS BEGIN INSERT INTO accounts (id,name, balance) VALUES (i, 'Test', 1200); END; View Update Delete
277PL/pgSQLDatenbankDatenbankobjekte KommentarCOMMENT ON FUNCTION increment(i INT) IS 'This is a comment';View Update Delete
278PowerShellFilehandlingPrüfen ob Verzeichnis existiert$myFolder = "C:\TEMP" if ((Test-Path $myFolder) -eq $true) { write-host "Folder exists!" } else { write-host "Folder doesn't exist!" }View Update Delete