What is the difference between base table and view?

Answer Posted / baalu

hi,
tanx to ashok and bush.
this is baalu

Is This Answer Correct ?    2 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How many databases can be created inside an instance in db2 ?

601


Explain the benefits you can get from mainframe connect?

522


Explain various types of locks in db2?

693


How do you concatenate the firstname and lastname from emp table to give a complete name?

603


How will you return the number of records in table?

518






What is bind package and plan in db2?

595


What is dbrm in db2 database?

591


Explain about open switch business continuity software?

563


Explain db2.

619


How to view db2 table structure?

593


When the like statement is used?

640


What is the maximum length of sqlca?

869


What are sqlcodes –803,-805, -811, -818,-904,-911,-913,-101, +100?

714


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.

2155


What is a Foreign Key?

657