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

  • Home
  • SEARCH
  • 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 5984923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:27:07+00:00 2026-05-22T22:27:07+00:00

Can we do the opposite of the INITCAP() function? It sets the first letter

  • 0

Can we do the opposite of the INITCAP() function? It sets the first letter of each word to lowercase and rest of the letters to upper case.

For example, SOMEFUNCTION(abc) returns aBC.

  • 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-22T22:27:08+00:00Added an answer on May 22, 2026 at 10:27 pm

    Below you can find a function for MySQL.

    delimiter //
    create function lower_first (input varchar(255))
    returns varchar(255)
    deterministic
    begin
    declare len int;
    declare i int;
    set len   = char_length(input);
    set input = upper(input);
    set i = 0;
    while (i < len) do
        if (mid(input,i,1) = ' ' or i = 0) then
            if (i < len) then
                set input = concat(
                              left(input,i),
                              lower(mid(input,i + 1,1)),
                              right(input,len - i - 1)
                            );
            end if;
        end if;
        set i = i + 1;
    end while;
    return input;
    end; //
    delimiter ;
    
    select lower_first('this is my TeSt'); -- tHIS iS mY tEST
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I create the opposite of a hexadecimal color? For example, I'd like
can i have a validation which do exactly opposite to validates_uniqueness_of? i.e. i would
(This question is the opposite of this one ) How can I go from
How can you set the opposite of keyPress, keyup, keydown etc. Something like if
I did the opposite by mistake and now i can't go back to the
Can anyone explain why $(this).is(:checked) gives the opposite result when the checkbox is clicked
Is there any opposite method for DragManager.acceptDragDrop(),like DragManager.removeDragDrop() which can be handled in dragExit
I know that Service can have a reference to Activity . Does the opposite
From name alone, I can derive that stopListening() is the opposite of startListening() .
Is there an opposite to putchar() where you can pass the ascii character and

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.