sql 如何用SQL大写字符串中的每个单词?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 如何用SQL大写字符串中的每个单词?相关的知识,希望对你有一定的参考价值。

--***********************************************************************************************************************
------------------------SQL Server-------------------------------------------------------------------------------------

----1) Get the first letter of the string & capitalize it
upper(left(ltrim(title),1)) as first_letter_first_word,

----2) Get the remaining string
right(lower(ltrim(title)), len(lower(ltrim(title)))-1) as remaining_string,

----3) Find the position of the first blank space-----------------
charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) as blank_position,

----4) Get the remainig firs word /without its first letter/
left(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) ) as remaing_first_word,

----5) Separate the second word from the rest of the strin--------------
right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
			len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1))) as second_word,

----6) Get the first letter of the second word and capitalize it--------------
upper(left(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
			len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1))), 1)) as first_letter_second_word,
				
-----7) get the remaining second word----------------------------------------
right(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
			len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1))), 
				
		len(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
					len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
						charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1)))) - 1) as remining_second_word,
				

-----------------------------------------------------------------------------------------------------------------------------				                                                                                    
---first letter first word------
upper(left(ltrim(title),1)) + 

---remaining first word--------------
left(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) ) +

---second word (with capital letter----------				
concat(
---first letter to be replaces
			upper(left(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
			len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
				charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1))), 1) ),
				
				
			right(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
						len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
							charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1))), 
							
					len(right(right(lower(ltrim(title)), len(lower(ltrim(title)))-1), 
								len(right(lower(ltrim(title)), len(lower(ltrim(title)))-1)) -
									charindex(' ', right(lower(ltrim(title)), len(lower(ltrim(title)))-1)))) - 1)
				                                                                               ) as final_proper

from datageeking.dbo.films

--*******************************************************************************************************************************
-------------------------MySQL--------------------------------------------------------------------------------------------------
#----1) Get the first letter of the string & capitalize it
upper(left(ltrim(title),1)) as first_letter_first_word,


#----2) Get the remaining string
right(lower(ltrim(title)), length(lower(ltrim(title)))-1) as remaining_string,


#----3) Find the position of the first blank space-----------------
instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ') as blank_position,


#----4) Get the remainig firs word /without its first letter/
left(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ') ) as remaing_first_word,


#----5) Separate the second word from the rest of the strin--------------
right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ') ) as second_word,


#----6) Get the first letter of the second word and capitalize it--------------
upper(left(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ')), 1)) as first_letter_second_word,

#-----7) Get the remaining second word-------------------------------------------	
right(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ')), 
				
		length(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
					length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
						instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' '))) - 1) as remining_second_word,

#---------------------------------------------------------------------------------------------------------				                                                                                    
#---first letter first word------
Concat (upper(left(ltrim(title),1)), 

#---remaining first word--------------
left(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ')),

#---first letter second word---------------------------------------------------------
upper(left(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ')), 1)),

#---remaining second word----------------------------------------------------------------
right(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' ')), 
				
		length(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
					length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
						instr(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), ' '))) - 1)
				                                                                              )  as final_proper
                                                                                               
 from sakila.film
 
 
 --***************************************************************************************************************************************
 ------------------------------PostgreSQL-----------------------------------------------------------------------------------------------
 ----1) Get the first letter of the string & capitalize it
upper(left(ltrim(title),1)) as first_letter_first_word,


----2) Get the remaining string
right(lower(ltrim(title)), length(lower(ltrim(title)))-1) as remaining_string,


----3) Find the position of the first blank space-----------------
position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) as blank_position,


----4) Get the remainig firs word /without its first letter/
left(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) ) as remaing_first_word,


----5) Separate the second word from the rest of the strin--------------
right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) ) as second_word,


----6) Get the first letter of the second word and capitalize it--------------
upper(left(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1))), 1)) as first_letter_second_word,

		
-----7) Get the remaining second word-------------------------------------------	
right(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1))), 
				
		length(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
					length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
						position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1)))) - 1) as remining_second_word,

---------------------------------------------------------------------------------------------------------				                                                                                    
---first letter first word------
Concat (upper(left(ltrim(title),1)), 

---remaining first word--------------
left(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1))),

-----first letter second word---------------------------------------------------------
upper(left(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1))), 1)),

------remaining second word----------------------------------------------------------------
right(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
			length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
				position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1))), 
				
		length(right(right(lower(ltrim(title)), length(lower(ltrim(title)))-1), 
					length(right(lower(ltrim(title)), length(lower(ltrim(title)))-1)) -
						position(' ' in right(lower(ltrim(title)), length(lower(ltrim(title)))-1)))) - 1)
				                                                                              )  as final_proper

from public.film

以上是关于sql 如何用SQL大写字符串中的每个单词?的主要内容,如果未能解决你的问题,请参考以下文章

如何用python语言编能将字符串中的每个字符的ASCII码加20后输出对应字符的程序?

如何用SQL语言实现人民币的大小写转换

如何用非重音字符替换clickhouse中数组中的每个单词的每个重音字符?

如何用sql的日期函数,分别查出1月~12月每个月的销售金额?

SQL:仅首字母大写[重复]

Oracle SQL:如何用 CR/LF 替换现有 VARCHAR2 字段中的字符