I have one table,in that table
(1)i have java1.1 version books are 2 and java1.5 version
books are 4.
(2).Net2.0 books are 3, .Net3.5 books are 2
(3)ABC1.6 books are 4, ABC2.0 books are 3.

Now i want output is like

Book Count

Java 6
.Net 5
ABC 7

For this i need sql query, please help me if anyone how to
get this result.

Thanks,
Seenu

Answer Posted / ravi

Hi Seenu,
Please find the Query below.

select rtrim(bk_nm,'0123456789.'),sum(bk_cnt) from books
group by rtrim(bk_nm,'0123456789.')

where bk_nm is the name of the books you wrote and bk_cnt
is their individual count. Run this Query and you'll get
your answer.

In case of doubts do feel free to ask.

Thanks,
Ravi Jha

Is This Answer Correct ?    8 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why should I use postgresql?

765


Which constraints we can use while creating database in sql?

794


Which one is faster ienumerable or iqueryable?

660


What is the sql query to display the current date?

758


How do I view stored procedures?

739






Why are indexes and views important to an organization?

681


What is difference between stored procedures and application procedures?

764


What is character functions?

745


What are the three forms of normalization?

760


Can I learn sql in a week?

753


Compare sql & pl/sql

773


How many parts of a pl sql block are optional?

713


What is pivot in sql?

670


how to convert character strings to dates? : Sql dba

718


Why procedure is used in sql?

754