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 7026605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:08:23+00:00 2026-05-28T00:08:23+00:00

I have 2 tables in my MySQL table: cat and notes. MySQL for cat

  • 0

I have 2 tables in my MySQL table: cat and notes.

MySQL for cat

CREATE TABLE IF NOT EXISTS `cat` (
  `cat_id` int(11) NOT NULL AUTO_INCREMENT,
  `cname` int(11) NOT NULL,
  PRIMARY KEY (`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

MySQL for notes:

CREATE TABLE IF NOT EXISTS `notes` (
  `notes_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(50) NOT NULL,
  `notebody` varchar(300) NOT NULL,
  `cat_id` int(20) NOT NULL,
  `approved` int(11) NOT NULL,
  PRIMARY KEY (`notes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

I like to know how to count how many notes each category have that approved equals to 1. and I want to show categories that have zero notes as category name – 0. I tried left join but it’s leaving all categories that have zero notes.

  • 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-05-28T00:08:24+00:00Added an answer on May 28, 2026 at 12:08 am

    Try

    SELECT cat_id, COUNT(*) AS cnt
    FROM notes
    WHERE approved = 1
    GROUP BY cat_id
    

    And

    SELECT c.cat_id, c.cname, COUNT(*) AS cnt
    FROM cat c
    LEFT OUTER JOIN notes n ON n.cat_id = c.cat_id
    GROUP BY c.cat_id
    HAVING cnt < 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please consider following schema CREATE table articles ( id Int UNSIGNED NOT NULL AUTO_INCREMENT,
I have two MySql tables like the following: Cat ------ id : INT NOT
I have a MySQL table consisting of: CREATE TABLE `url_list` ( `id` int(10) unsigned
using php and mysql I have two tables, a users table and a profiles
I have a mysql db with 10 tables. Each table drives a website where
using mysql and php, I have two tables, I'm french so the table names
I'm trying to delete orphan entries in a mysql table. I have 2 tables
I have another little question. I have a mysql-table cat | item | data
If I have a MySQL table like this below: id | cat_id | name
I have a MySQL table ( tbl_filters ) with 3 columns: id , cat

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.