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
Rocky Rocky
NA
317
151.7k
How to Make code For These Query?
Jan 9 2014 12:56 AM
Dear Friends,
i ve the table like
create table invoice
(
invoic_no varchar(25),
item_no int,
invoic_qty int,
inv_date datetime
)
insert into invoice(invoic_no,item_no,invoic_qty,inv_date)
values('tn/0002/13-14','A12','25','03-04-2013')
insert into invoice(invoic_no,item_no,invoic_qty,inv_date)
values('tn/0002/13-14','A13','04','03-04-2013')
insert into invoice(invoic_no,item_no,invoic_qty,inv_date)
values('tn/0004/13-14','A13','25','03-04-2013')
insert into invoice(invoic_no,item_no,invoic_qty,inv_date)
values('tn/0004/13-14','A15','04','03-04-2013')
Here I need The O/P like:
Invoic_no Item_no Sales Free
tn/0004/13-14 A13 25 0
tn/0004/13-14 A15 0 4
tn/0002/13-14 A12 25 0
tn/0002/13-14 A13 0 4
MY expecting O/p is both item are billed in same invoice where the max qty is to display on'SALES'(I.e tn/0004/13-14 A13 25 )
Minimum Value is to display on Free?
Reply
Answers (
1
)
DRIFT detection
How to seperate and display the max value ?