Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8791657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:52:24+00:00 2026-06-13T22:52:24+00:00

I have these 3 tables, tbl_1- ip |isp |infection ———————- 1 |aaaa |malware 2

  • 0

I have these 3 tables,

tbl_1-
ip  |isp    |infection
----------------------
1   |aaaa   |malware
2   |bbbb   |malware
3   |cccc   |ddos
3   |cccc   |trojan
4   |dddd   |ddos

tbl_2-
ip  |isp    |infection
----------------------
1   |aaaa   |malware
3   |cccc   |ddos
4   |dddd   |trojan
5   |eeee   |trojan
6   |ffff   |other

tbl_3-
ip  |isp    |infection
----------------------
1   |aaaa   |ddos
6   |ffff   |
2   |bbbb   |other

Which i need to get the result as follows,

result-
ip  |isp    |infection  |ipCount    |ispCount   |infectionCount
--------------------------------------------------------------
1   |aaaa   |malware    |3          |3          |2
1   |aaaa   |ddos       |3          |3          |1
2   |bbbb   |other      |2          |2          |1
2   |bbbb   |malware    |2          |2          |1
3   |cccc   |ddos       |3          |3          |2
3   |cccc   |trojan     |3          |3          |1
4   |dddd   |ddos       |2          |2          |1
4   |dddd   |trojan     |2          |2          |1
5   |eeee   |trojan     |1          |1          |1
6   |ffff   |other      |2          |2          |1
6   |ffff   |           |2          |2          |1

ipCount, ispCount -> count of matching ip and isp
    eg-there are 3 records with ip = 1 and isp = aaaa

infectionCount -> count of matching infections per ip and isp
    eg-there are 2 infections that says malware where ip = 1 and isp = aaaa

I think I need a nested a query but I don’t know how to count with two conditions; can you help?

EDIT : Code I tried,

SELECT ip, isp, infection, count(ip), count(isp), count(infection)
FROM (

SELECT ip, isp, infection
FROM tbl_1
UNION ALL
SELECT ip, isp, infectionType
FROM tbl_2
UNION ALL
SELECT ip, isp, infection
FROM tbl_3
)x

GROUP BY ip, isp, infection

But it doesnt give the result I desire cause I don’t know how to do 2 types of counts in one query

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T22:52:25+00:00Added an answer on June 13, 2026 at 10:52 pm

    You need to group column infection and (ip & ipc) differently then join them using sub-query like this:

    SELECT t1.ip, t1.isp, t2.infection, t1.ipc, t1. ispc, t2.incount
    FROM
        (SELECT ip, isp, infection, COUNT(ip) as ipc, COUNT(isp) as ispc
        FROM (
           SELECT ip, isp, infection
           FROM tbl1
           UNION ALL
           SELECT ip, isp, infection
           FROM tbl2
           UNION ALL
           SELECT ip, isp, infection
           FROM tbl3
           )x
         GROUP BY ip, isp) t1
    JOIN
        (SELECT ip, isp, infection, COUNT(infection) as incount
         FROM (
           SELECT ip, isp, infection
           FROM tbl1
           UNION ALL
           SELECT ip, isp, infection
           FROM tbl2
           UNION ALL
           SELECT ip, isp, infection
           FROM tbl3
           )x
        GROUP BY ip, isp,  infection)t2
    ON t1.ip = t2.ip
    ORDER BY ip, isp, infection Desc
    

    See this SQLFiddle

    Note: I think your desired output is wrong because:

    1. In Table3 there is no infection for ip=6 but it is in your output
    2. infection other is missing in your output (instead there is malware)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables, tbl_foo and tbl_bar , and I want to join these
I have these tables: comments uid id pid pages pid user users id rank
I have these tables places(place_id, place_name) places_criteria(place_id, criterion_id) criteria(criterion_id, criterion_name) places_criteria have foreign keys
I have these tables: Idea and poll (and others) which are types of what
I have these tables: table_a user_id article_id created_at articles user_id created_at ... I need
I have these tables and values: Table1 ------------------------ ID | Value ------------------------ 2 |
Suppose you have these tables: Table Name: Salesman Fields: S_ID(Primary Key), Name Table Name:
Strange situation. If I have these tables: CREATE TABLE t1 (id INT, title VARCHAR(20),
Im trying to JOIN 2 tables and count the results. I have these tables;
I have these 3 tables: and I'm using this code to join them together

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.