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 :: oracle sysdate 
Sql :: make a field auto_increment mysql 
Sql :: mysql config user password 
Sql :: how to export table data from mysql table in sql format 
Sql :: oracle alter table delete column 
Sql :: pgAdmin - Please correct the Binary Path 
Sql :: wordpress print query sql 
Sql :: mysql get random data 
Sql :: sql delete join 
Sql :: python sqlite3 prepared statement 
Sql :: oracle search in date columns 
Sql :: SQL Modify Column in a Table -Oracle 
Sql :: sql query to search for a string in all columns 
Sql :: insert query in ci 
Sql :: sql values not in another table 
Sql :: oracle all tables 
Sql :: postgres select max value 
Sql :: how to use lower case in mysql 
Sql :: postgresql create schema in specific database 
Sql :: Add SuperUser MySQL 
Sql :: postgresql extract hour and minutes from timestamp 
Sql :: find a column in all tables mysql 
Sql :: mysqli last row 
Sql :: SQL COUNT() with DISTINCT 
Sql :: postgres cast as decimal 
Sql :: sql date diff 
Sql :: postgresql add leading zeros 
Sql :: mysql cdn link 
Sql :: store select query result in variable sql server 
Sql :: list of all table names in sql server databse 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =