Search
 
SCRIPT & CODE EXAMPLE
 

SQL

uppercase and lowercase in sql

select UPPER('converted to upper');
select LOWER('CONVERTED TO LOWER');
Comment

upper case sql

SELECT upper('Hello World');		-- HELLO WORLD
SELECT lower('Hello World');		-- hello world
Comment

how to write uppercase in sql

SELECT UPPER(FIRST_NAME) , LOWER(LAST_NAME)
FROM CUSTOMERS ;
Comment

funktion LOWER/UPPER sql

LOWER/UPPER
LOWER wandelt eine String in eine in Kleinbuchstaben um. 
UPPER ist das Gegenstück zu LOWER, und wandelt den String 
in Grossbuchstaben um.

SELECT LOWER (expression)

SELECT UPPER (expression)
Comment

PREVIOUS NEXT
Code Example
Sql :: postgres recursive function 
Sql :: into sql 
Sql :: creating table in mysql 
Sql :: postgresql procedure example 
Sql :: sql select if two columns are equal 
Sql :: delete top 10 rows in sql 
Sql :: mysql select row max date 
Sql :: How to insert Arabic characters into SQL database 
Sql :: sql sequence 
Sql :: sql server 2019 installation 
Sql :: sql right join 
Sql :: sql oracle limit 
Sql :: oracle show parameter 
Sql :: find mysql password 
Sql :: ms sql server port 
Sql :: calculate date and convert to yearsmysql 
Sql :: oracle create table as select 
Sql :: select the date 30 days less that the todays date sql request 
Sql :: const pool = mysql.createpool() 
Sql :: generate random & unique mysql string 
Sql :: how to get specific salary in sql 
Sql :: mysqli inner join (php) 
Sql :: identity syntax in sql 
Sql :: how to search query in python3 sqlite3 
Sql :: mysql grant user permissions 
Sql :: Mysql Selected All Duplicate Rows 
Sql :: could not assemble any primary key columns for mapped table sqlalchemy 
Sql :: SQL order by string split length 
Sql :: full outer join postgres 
Sql :: how to update values in sql 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =