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 31-40 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
133VB.NETStringsString nach einem Teilstring durchsuchenDim longStr = "This is a long string" Dim searchFor = "long" position = InStr( longStr, searchFor )View Update Delete
6MySQLDatum, ZeitAktuelles Datum/UhrzeitSELECT NOW(); INSERT INTO table (datetime) VALUES (NOW());View Update Delete
10MySQLDatenbankLesen DatensatzesSELECT * FROM myTable WHERE id=1; SELECT field2,field17 FROM myTable WHERE id=1 AND name='test'; SELECT field3,field1 FROM myTable WHERE city like '%ew Yor%'; 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
287MySQLStringsAnzahl an Zeichen in einem String ermitteln-- Gets only result with 4 "/" in the the field relativePath SELECT id ,albumRoot ,relativePath ,date ,caption ,collection ,icon ,LENGTH(relativePath) - LENGTH(REPLACE(relativePath,'/','')) AS `occurrences` FROM Albums WHERE LENGTH(relativePath) - LENGTH(REPLACE(relativePath,'/',''))=4 ; View Update Delete
83MySQLDatenbankTabellenstruktur kopierenCREATE TABLE zieltabelle SELECT * FROM quelltabelle WHERE ID=-1;View Update Delete
130MySQLDatenbankCSV erstellen-- http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat SELECT R.TITEL AS TITEL ,R.ANLEITUNG AS ANLEITUNG ,GROUP_CONCAT(CONCAT(CAST(RZ.MENGE AS CHAR),' ',RZ.EINHEIT,' ' ,Z.ZUTAT) SEPARATOR ',') AS ZUTATEN ,R.NOTIZ AS NOTIZ FROM REZEPT AS R LEFT JOIN REZEPT_HAS_ZUTAT AS RZ ON R.ID=RZ.REZEPT_ID LEFT JOIN ZUTAT AS Z ON RZ.ZUTAT_ID=Z.ID AND RZ.REZEPT_ID=R.IDView Update Delete
205MySQLDatum, ZeitTagesnameSELECT DAYNAME(NOW()); -- Monday SELECT DAYNAME('2014-08-10'); -- Sunday -- To get localized names switch the parameter, e.g. to German SET lc_time_names = 'de_DE'; SELECT DAYNAME('2014-08-10'); -- SonntagView Update Delete
206MySQLDatenbankTabelle DB übergreifend kopierenDROP TABLE IF EXISTS `DestinationDB`.`Table1`; CREATE TABLE `DestinationDB`.`Table1` SELECT * FROM `SourceDB`.`Table1`;View Update Delete
218MySQLDatenmengenAnzahl Zeilen Resultset begrenzenSELECT * FROM tableA LIMIT 100;View Update Delete