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

uppercase sql

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

PREVIOUS NEXT
Code Example
Sql :: select * where id = 1,2,3 
Sql :: delete db postgres 
Sql :: osx stop mysql service 
Sql :: create date sql 
Sql :: AND OR NOT operators sql 
Sql :: SQL query to verify the size of the table 
Sql :: how to load files in mysql 
Sql :: check database sessions oracle 
Sql :: execute sp in sql server 
Sql :: allow null in psql 
Sql :: sql convert date format 
Sql :: sql server drop database 
Sql :: mysql create procedure phpmyadmin 
Sql :: object dependencies in oracle 
Sql :: createdb with postgresql on ubuntu 
Sql :: sequence postgresql 
Sql :: is numeric in sql 
Sql :: sql max of two values 
Sql :: sql where time stamp is in between 
Sql :: postgresql default value 
Sql :: mysql select row max date 
Sql :: postgres default value 
Sql :: sql power function 
Sql :: install mysql for fedora 34 
Sql :: ms sql server port 
Sql :: SQL Rename Column in a Table 
Sql :: truncate your answer to decimal places mysql 
Sql :: how to connect to postgres 
Sql :: mssql procedure 
Sql :: sql create table 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =