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 write uppercase in sql

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

PREVIOUS NEXT
Code Example
Sql :: sql server delete table 
Sql :: sql select date add day 
Sql :: unable to convert mysql date/time value to system.datetime 
Sql :: laravel eloquent get generated sql 
Sql :: ON DUPLICATE KEY UPDATE for postgres 
Sql :: mysql connectiion timeout 
Sql :: oracle select row max date 
Sql :: null column as zero in mysql 
Sql :: sql select if not exists 
Sql :: count occurrences sql 
Sql :: create table from existing table in sql 
Sql :: reset keys in sql 
Sql :: sql select inside select 
Sql :: oracle last modification in table 
Sql :: mssql server port 
Sql :: mysql query to find duplicate records 
Sql :: pl sql create table from another table 
Sql :: select all tables linked server sql 
Sql :: sql find leading space 
Sql :: postgresql database url 
Sql :: how to get nth number in sql 
Sql :: postgresql could not start server mac 
Sql :: start and stop mysql 
Sql :: mysql show category once count how many products 
Sql :: sql pivot rows to columns 
Sql :: sql distinct 
Sql :: mysql default uuid 
Sql :: nested query sql 
Sql :: mysql max() 
Sql :: show specific events on mysql 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =