TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Gurpreet Arora
203
9.5k
657.8k
How I Insert No of Rows Into Another table
Aug 4 2015 1:45 AM
Hi
Create table test3
(
Id int primary key identity(1,1),
No_of_test3 int,
Name varchar(50),
)
Create table test4
(
test4id int primary key identity(1,1),
test4Name varchar(50),
test3id int foreign key references test3(id)
)
I want to Insert value into Test4 on the basis of test3
In Table test3 No_of_test3 int is 5 then i want 5 rows in test 4
Reply
Answers (
2
)
network intance problem occured ...
Optimize performance of oracle select statement.