Find Jobs
Hire Freelancers

5 Minute Project: SQL Statement to Capitalize 1st Letter of Fields in Specific Column -- 2

$2-8 USD / hour

Lukket
Slået op næsten 9 år siden

$2-8 USD / hour

DB Type: MySQL 5 STAR FEEDBACK WILL BE LEFT FOR YOU Task: SQL Statement to Capitalize 1st Letter of Fields in Specific Column JUST THE STATEMENT IS REQUIRED
Projekt-ID: 7540930

Om projektet

23 forslag
Projekt på afstand
Aktiv 9 år siden

Leder du efter muligheder for at tjene penge?

Fordele ved budafgivning på Freelancer

Fastsæt dit budget og din tidsramme
Bliv betalt for dit arbejde
Oprids dit forslag
Det er gratis at skrive sig op og byde på jobs
23 freelancere byder i gennemsnit $4 USD/time på dette job
Brug Avatar.
Hello Sir, I can start immediately. Lets wrap this straight away. Thanks a lot. Looking forward to work with you
$8 USD på 1 dag
5,0 (126 anmeldelser)
9,0
9,0
Brug Avatar.
Dear Employer, Greetings, I am ready to do the task, I can assure 100% satisfaction for quality work. You can read reviews/details about my past work on my profile http://www.freelancer.com/u/alyaspk.html Please feel free to ask any questions. Looking forward to fruitful response. Kind Regards, Muhammad Alyas
$5 USD på 3 dage
5,0 (86 anmeldelser)
7,1
7,1
Brug Avatar.
Hello, I can provide you the required SQL query straightforward. If you are interested please let me know. If you'd like to know more about my experience and skill set, you will find a detailed information of the key projects I have been working on as well as a complete list of my skill set in my Portfolio section. Best regards, K. Anagnostos
$5 USD på 1 dag
5,0 (24 anmeldelser)
6,4
6,4
Brug Avatar.
Hi, I can do this task for you which will make first letter capital in a field of column. Please message me for any queries. Thanks.
$5 USD på 1 dag
5,0 (40 anmeldelser)
5,3
5,3
Brug Avatar.
Dear Sir, Able to start right now. I have more than 2+ years experience in jquery,ajax,html,css,php, paypal integration and web based cms and frameworks like joomla,codegintter etc. I read all your description and know exactly what is needed to do and within timeline. I hope I am able to help you and I am waiting for your reply. Regards, bdphpguru
$4 USD på 3 dage
4,9 (38 anmeldelser)
4,6
4,6
Brug Avatar.
A proposal has not yet been provided
$3 USD på 4 dage
5,0 (2 anmeldelser)
4,3
4,3
Brug Avatar.
plz come on chat now so we can discuss more....am waiting... Dear Sir, I am really interested to work on this project, I can start the work now , and can provide the best services from my end. Please come on chat to discuss more about the project. Regards, Bhagwan
$2 USD på 1 dag
4,9 (7 anmeldelser)
3,1
3,1
Brug Avatar.
Hello! You'll have to use a DB function. For example: DELIMITER // CREATE FUNCTION UC_WORDS(oldName VARCHAR(255), delim VARCHAR(1)) RETURNS VARCHAR(255) BEGIN SET @oldString := oldName; SET @newString := ""; tokenLoop: LOOP SET @splitPoint := LOCATE(delim, @oldString); IF @splitPoint = 0 THEN SET @newString := CONCAT(@newString, UC_FIRST(@oldString)); LEAVE tokenLoop; END IF; SET @newString := CONCAT(@newString, UC_FIRST(SUBSTRING(@oldString, 1, @splitPoint))); SET @oldString := SUBSTRING(@oldString, @splitPoint+1); END LOOP tokenLoop; RETURN @newString; END// DELIMITER ; After creating the function, you can use an SQL like this: SELECT UC_WORDS('testing-this-thing', '-', TRUE); Result will be "Testing-This-Thing". Another example with blank spaces: SELECT UC_WORDS('this is another test', ' ', TRUE); Result will be "This Is Another Test". Hope that helps. Alex.
$5 USD på 3 dage
5,0 (1 bedømmelse)
3,2
3,2
Brug Avatar.
A proposal has not yet been provided
$7 USD på 3 dage
5,0 (6 anmeldelser)
2,9
2,9
Brug Avatar.
UPDATE abc SET xyz = CONCAT(UCASE(LEFT(xyz, 1)), SUBSTRING(xyz, 2)); Basically that is. Do you mean something special by "of Fields in Specific Column"?
$7 USD på 1 dag
5,0 (1 bedømmelse)
2,1
2,1
Brug Avatar.
Hi, UPDATE tb_Company SET CompanyIndustry = CONCAT(UCASE(LEFT(CompanyIndustry, 1)), SUBSTRING(CompanyIndustry, 2)); The above statement modify the table column CompanyIndustry from tb_Company table. This would turn hello to Hello, wOrLd to WOrLd, BLABLA to BLABLA Please award me :)
$2 USD på 1 dag
3,0 (1 bedømmelse)
0,9
0,9
Brug Avatar.
I have worked in various projects involving SQL queries. I can finish the work in no time and it will be delivered to you on time.
$2 USD på 3 dage
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
This is quite a simple task that I'll provide the necessary SQL statement straight up: SELECT CONCAT(UCASE(SUBSTRING(my_column, 1, 1)), SUBSTRING(my_column, 2)) FROM my_table
$5 USD på 1 dag
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
Have contributed a lot to the open source community through various projects on Github, I have a profound knowledge around MySQL* as well NoSQL databases. *A SQL query walks into a bar and sees two tables. He walks up to them and says ‘Can I join you? Then a waitress walks up and says ‘Nice view !
$2 USD på 5 dage
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
This is how you can achieve this in MS SQL server , I don't have My SQL here but it should be pretty straight forward. Select Upper(left(ltrim(column2),1))+lower(right(ltrim(column2),len(column2)-1)) from table
$5 USD på 1 dag
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
I must put a bid so that I can write the message. You do not need to pay anything. Use the following statement to capitalize first letter of all string values of particular column. SELECT concat(upper(substr(specific_column_name,1,1)), substr(specific_column_name,2)) FROM table_name;
$2 USD på 1 dag
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
It is simple: sample for select: select concat(ucase(MID(category_name, 1,1)), MID(category_name, 2)) AS category_name from table_name; But how you will having the statement? with best regards, Vatay
$5 USD på 1 dag
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
Hi, I have 4 years of strong experience in writing SQL, PL/SQL queries and is responsible for preparation of technical design documents, development and deployment of Conversion programs, Interfaces, XML Publisher Reports and Workflows with Oracle development tools and utilities including SQL*Plus, SQL*Loader, PL/SQL developer, BI Publisher, Workflow builder I believe I can help you around from the issue. Regards, Profez
$5 USD på 8 dage
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
Hi, you don't even have to pay me but I had to put in a minimum bid. I would like to just get a good rating so that I can start a review process on Freelancer so I can get higher paid jobs.
$2 USD på 1 dag
0,0 (0 anmeldelser)
0,0
0,0
Brug Avatar.
Hi, this is a easy job. Just need access to database and run SQL statement, even could you do it we my supervision.
$5 USD på 3 dage
0,0 (0 anmeldelser)
0,0
0,0

Om klienten

Flag for UNITED KINGDOM
London, United Kingdom
4,8
623
Betalingsmetode verificeret
Medlem siden feb. 2, 2011

Klientverificering

Tak! Vi har sendt dig en e-mail med et link, så du kan modtage din kredit.
Noget gik galt, da vi forsøgte at sende din mail. Prøv venligst igen.
Registrerede brugere Oprettede jobs i alt
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Indlæser forhåndsvisning
Geolokalisering er tilladt.
Din session er udløbet, og du er blevet logget ud. Log venligst ind igen.