Search
 
SCRIPT & CODE EXAMPLE
 

SQL

uppercase and lowercase in sql

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

sql server to uppercase

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

how to upper case in sql

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

PREVIOUS NEXT
Code Example
Sql :: postgres update with if condition query 
Sql :: get week day from date in sql 
Sql :: sql server last 2 days 
Sql :: sql order by multiple columns 
Sql :: rename column in table sql 
Sql :: get number of columns sql 
Sql :: grant all privileges microsoft sql 
Sql :: firebase query timestamp 
Sql :: how to join tables in sql 
Sql :: sql precent format 
Sql :: data formate in sql 
Sql :: update sqlite 
Sql :: mysql min value row 
Sql :: oracle dba_dependencies 
Sql :: mysql find duplicates 
Sql :: postgres integer to serial 
Sql :: recursion in sql 
Sql :: make date with time sql 
Sql :: using minus query in SQL 
Sql :: NVL() Functions 
Sql :: oracle select row max date 
Sql :: what is having clause in sql 
Sql :: sql use not in 
Sql :: psql select * from table 
Sql :: mssql server port 
Sql :: consecutive numbers sql 
Sql :: select only the month-day from date in PL-SQL 
Sql :: mysql workbench tutorial 
Sql :: temp tables in sql server 
Sql :: sql duplicate a table with data 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =