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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:56:41+00:00 2026-06-04T07:56:41+00:00

Please take a look at my stored procedure code. CREATE DEFINER=`ninjaboy`@`%` PROCEDURE `getMonthlyTotalScore`(IN ninjaId

  • 0

Please take a look at my stored procedure code.

CREATE DEFINER=`ninjaboy`@`%` PROCEDURE `getMonthlyTotalScore`(IN ninjaId int,  IN month int, IN year int)
BEGIN
    DECLARE startDate DATE;
    DECLARE endDate DATE;
    DECLARE maxDay INTEGER;

    SELECT DAY(LAST_DAY(year + '-' + month + '-01')) INTO maxDay;

    SET startDate = year + '-' + month + '-01';
    SET endDate = year + '-' + month + '-' + maxDay;

    SELECT SUM(SCORE) FROM NINJA_ACTIVITY WHERE NINJA_ID = ninjaId AND DATE BETWEEN startDate AND endDate ORDER BY DATE;
END

Test Data:

NINJA_ACTIVITY_ID | NINJA_ID | SCORE | DATE
1                   1          24      2012-05-01
2                   1          36      2012-05-06
3                   1          29      2012-05-11

Function call : call getTotalMonthlyScore (1, 5, 2012)

I’m trying to get the monthly score of any ninja based on the ninjaId.

Why is not working? Any idea where I am getting wrong?

  • 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-04T07:56:42+00:00Added an answer on June 4, 2026 at 7:56 am

    CONCAT() is the key.

    BEFORE:

    mysql> CREATE  PROCEDURE `getMonthlyTotalScore`(IN ninjaId int,  IN month int, IN year int)
            -> BEGIN
            ->     DECLARE startDate DATE;
            ->     DECLARE endDate DATE;
            ->     DECLARE maxDay INTEGER;
            -> 
            ->     SELECT year + '-' + month + '-01'; #NOTE THIS
            -> 
            ->     
            -> END;    
            -> |
        Query OK, 0 rows affected (0.00 sec)
    
        mysql> call getMonthlyTotalScore(1,5,2012);
            -> |
        +----------------------------+
        | year + '-' + month + '-01' |
        +----------------------------+
        |                       2016 |
        +----------------------------+
        1 row in set (0.00 sec)
    

    AFTER:

    mysql> CREATE  PROCEDURE `getMonthlyTotalScore`(IN ninjaId int,  IN month int, IN year int)
        -> BEGIN
        ->     DECLARE startDate DATE;
        ->     DECLARE endDate DATE;
        ->     DECLARE maxDay INTEGER;
        -> 
        ->     SELECT CONCAT(year,'-',month,'-01'); # NOTE THIS
        -> 
        ->     
        -> END;    |
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> call getMonthlyTotalScore(1,5,2012);
        -> |
    +------------------------------+
    | CONCAT(year,'-',month,'-01') |
    +------------------------------+
    | 2012-5-01                    |
    +------------------------------+
    1 row in set (0.00 sec)
    
    Query OK, 0 rows affected (0.00 sec)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please take a look on the following pseudo-code: boolean blocked[2]; int turn; void P(int
Please take a look at this code: template<class T> class A { class base
Please take a look on the following example: class Base { protected: int m_nValue;
Please take a look at the following code: Public Sub Method(Of TEntity As EntityObject)(ByVal
Please take a look at this code (thanks to user budwiser), it matches a
Please take a look at the code snippet below. I want the 2nd MongoDB
Please take a look at the code. It shouldn't take long to have a
Please take a look at my code: http://jsfiddle.net/XptrZ/ Why are'nt the blue divs inside
Please take a look at this code: $(document).ready(function() { var urls = ['http://en.wikipedia.org/w/api.php?action=query&titles=File:Einstein2.jpg&prop=imageinfo&iiprop=url&iiurlwidth=144&format=json&callback=?', 'http://en.wikipedia.org/w/api.php?action=query&titles=File:Da_Vinci_Vitruve_Luc_Viatour.jpg&prop=imageinfo&iiprop=url&iiurlwidth=144&format=json&callback=?',
Please take a look at the following simple code: class Foo { public: Foo(){}

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.