Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Please give me the SP for the below scenario. I have two
tables named Table1 and Table2...I need to fetch record by
record from Table1 and insert the record in to table2 where
the value in the sno column of the table1 is even number.

Answer Posted / priyanka malondkar

First make a function like this
create function functionname(@sno int)
returns number;
declare check;
begin
check=@sno%2
if check=0
return 0;
else
return 1;


Then the query will be
declare no;
insert into Table2(a,b,c) values select (a,b,c) from Table1
where no=functionname(sno) and no=0;

Kindly check.
In case of any syntax error please excuse as i have not
checked it of sql sever.

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to check if a table is being used in sql server?

1008


How to change the password of a login name in ms sql server?

1057


Explain transaction server distributed transaction?

1037


what is the difference between count(*) and count(1) ?

1125


Explain error handling in ssis?

1070


What happens to a trigger with multiple affected rows?

995


What are the commands used in DCL?

1082


What are the different types of triggers in SQL SERVER?

1187


How to delete exactly duplicate records from a table?

1110


What is bcp? When does it use?

988


What is a benefit of using an after insert trigger over using a before insert trigger?

1032


What are basics of policy management?

1150


What is named calculation? : sql server analysis services, ssas

1023


How to filter out duplications in the returning rows in ms sql server?

1213


Explain sql server service broker?

1026