Microsoft
Software
Hardware
Network
Question : Nested sql queries insetead of myltiple queries
I have 2 tables:
Table 1 (persons) has 2 fields id_p and name
Table 2 (Books) has 3 fields id_b, person_id,tittle
What I do now is:
select persons.name,books.title into temp from books,persons where
persons.id_p=books.person
Then
Select name,count(*) from temp group by name
The result is a table of all the persons (one row for each) and the nimber of books they have
I need to combine the 2 into one
select * from (select...)
Answer : Nested sql queries insetead of myltiple queries
select persons.name,books.title, (select count(*) from books where persons.id_p=books.person)
from persons
Random Solutions
How can I get an email to release its hold on an attachment after sending?
SCCM OSD deployment to Hyper-v R2
Why is my border not wrapping around all of my content in firefox??
WRVS4000 Router in front of Cisco ASA
Unix Shell script or Perl script to merge two csv text files based on a common key column
Creation of RAID device fails
Select an element Jquery.
Reverse DNS Centos 5, Bind. shared hosting
Excel VBA Bloomberg function
Is it possible to automatically copy data from AS/400 to Excel (or Lotus 1-2-3) without external apps?