Rozdíly

Zde můžete vidět rozdíly mezi vybranou verzí a aktuální verzí dané stránky.

Odkaz na výstup diff

Obě strany předchozí revize Předchozí verze
programovani:sql [01.10.2011 17:30]
miloush [Metadata]
programovani:sql [20.11.2011 15:36]
miloush
Řádek 84: Řádek 84:
 </​code>​ </​code>​
  
 +==== Procedury ==== 
 +=== SET vs. SELECT === 
 +  - SET is the ANSI standard for variable assignment, SELECT is not.  
 +  - SET can only assign one variable at a time, SELECT can make multiple assignments at once. 
 +  - **SCALAR** If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) 
 +  - **NULL** When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) 
 +  - As far as speed differences - there are no direct differences between SET and SELECT. However SELECT'​s ability to make multiple assignments in one shot does give it a slight speed advantage over SET. 
 +  
 +http://​vyaskn.tripod.com/​differences_between_set_and_select.htm
  
programovani/sql.txt · Poslední úprava: 20.11.2011 15:36 autor: miloush