Thursday, February 20, 2014

Case Insensitive Sorting Example in Oracle11g


Step1: Create Employee table 
create table employee(id int, name varchar(20));
 
Step2: Insert values to Employee table
insert into employee values(1,'Ranga');
insert into employee values(2,'rAnga Reddy');
insert into employee values(3,'Raja');
insert into employee values(4,'raJa Reddy');
insert into employee values(5,'raja');
insert into employee values(6,'Reddy');
insert into employee values(7,'ranga');
 
Step3: Select the Employee values with out sorting
select * from employee;
------------------------------------------- 
ID NAME
1 Ranga
2 rAnga Reddy
3 Raja
4 raJa Reddy
5 raja
6 Reddy
7 ranga
 
Step4: Select the Employee values with sorting 
select * from employee order by name;
------------------------------------------- 
ID NAME
3 Raja
1 Ranga
6 Reddy
2 rAnga Reddy
4 raJa Reddy
7 ranga
5 raja

 
Step5: Select the Employee values with case insensitive sorting 
select * from employee order by upper(name);
------------------------------------------- 
ID NAME
5 raja
3 Raja
4 raJa Reddy
7 ranga
1 Ranga
2 rAnga Reddy
6 Reddy
 
Click here to Run and Test the above example in online.


Related Posts:

  • Hibernate4.X Application example by using GradlePrerequisite requirement - Installed and configured Maven, MySQL, Eclipse IDE.- See more at: http://www.developer.am/documentation/hibernate/?page=maven-spring-hibernate-mysql-example#sthash.8UVHMaBr.dpufPrerequisite requirem… Read More
  • How Connect to Oracle when you forgot your PasswordReset Oracle Password  Step1: Open SQL Command Line  and enter the following command:SQL> conn sys/manager as sysdba;Connected.Step2: To reset the password of the SYSTEM password (or any other user password), run… Read More
  • Extend the System Tablespace on OracleThere are two ways to extend the system table space.1. Set the current datafile to AUTOEXTEND2. Add a new datafile1. Set the Current datafile to AUTOEXTENDSELECT 'ALTER database datafile ''' || file_name || ''' ' || ' AUTOEXT… Read More
  • Finding the Nth heighest Salary in SQLProgram: Write a SQL query to get the Nth highest salary from Employee table. Here N can be any number.Solution:SELECT e.* FROM Employee e;Step1: If you want to find the height salary, initially you need to sort the empl… Read More
  • How to Install Oracle 11g XE on Linux Fedora 17/18Installing Oracle Database 11g XE on Fedora 17/18The following are the steps to install a Oracle 11g in fedora.Step1:  Downloading the SoftwareDownload the oracle-xe-11.2.0-1.0.x86_64.rpm.zip file from follwing… Read More

0 comments: