What are your key strengths as a System/network Administrator?
Who was your most difficult customer?
How do you insert a field in word?
Is gmail a outlook?
What is the difference between hard real-time and soft real-time os?
In DAO we are writting sql queries , how it is possible with creating and closing database connections.
What is the reason for redness of early gingivitis ?
how you can install an extension in Joomla?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
How to modify the form validation in drupal?
What is isset php?
What will be the size of copper cable (each for 3 phase and 1 neutral) from Service connection Kit-Kat to Panel Board (i.e. to main switch) for a 6 pole 3-phase AC induction motor of 200 H.P. capacity? Amp-255 A, Frequency:- 1450 rpm.
what type of library model you are using?
Why we make body earthing of transformer and what will be the size of the copper wire for this purpose related to KVA Capacity of the Transformer as per code.
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. 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) 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.