mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			597 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			597 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{
 | 
						|
  "name": "||",
 | 
						|
  "type": "operator",
 | 
						|
  "description": "Joins two values together into a string.<br><br>If one of the values is NULL the result will be NULL. See the CONCAT function for a different behavior.",
 | 
						|
  "arguments": [
 | 
						|
        { "arg": "a", "description": "value" },
 | 
						|
        { "arg": "b", "description": "value" }
 | 
						|
  ],
 | 
						|
  "examples": [
 | 
						|
	{ "expression":"'Here' || ' and ' || 'there'", "returns":"'Here and there'"},
 | 
						|
	{ "expression":"'Nothing' || NULL", "returns":"NULL"},
 | 
						|
	{ "expression":"'Dia: ' || \"Diameter\"", "returns":"'Dia: 25'"},
 | 
						|
	{ "expression":"1 || 2", "returns":"'12'"}
 | 
						|
  ]
 | 
						|
}
 |