-
-
How to get the First name,second name,Third name ?
I have a column in a table with names.Now i want to select that names like first name,second and third.I/p like this----- names Chandu Kannaka prasad Rama krishna Kiran kumar Kora Balaji Chandra sekhar pottaO/p I want------ Firstname Secondname Thirdname ...
-
How to change the column name by using ALTER?
I Tried by giving......................... ALTER table table name rename column tocolumn name was changed but it's not giving entire table with altered column name.It's giving only the altered column.
-
-
Retreive data from 2 tables
I have 2 tables. Table A and Table B. I want to display all the rows from both the tables. can anyone help me on this??
-
Difference between joins and subquery?
Why do we use joins, instead subquery has same operation?
-
-
Index Organized Table (IOT)
What is the use Index Organized Table (IOT)?
-
How to insert a column in middle order?
Hi,i have 1 table contain 2 column if i add a new column it default stored in last column but my recruitment adding the new column in middle of the order so can any one explain
-
Removing duplicacy
How to delete duplicate records without using rownum/rowid concept?
-
Ascending Order and Descending Order Query
How to write a query to list the items in ascending order of Name and within Name, in descending order of Salary
-
Display the employee details who joined before 5 days.
Write a query to display the employee details who joined before 5 days.
-
Findout the Least Null Values column and print out that column records ?
I `ve 1 table with 3 colums A,B,C
A B C
1 3 5
4 null 6
8 2 null
null 1 null
null null 9
5 null 6
3 5 7
null null 3
-
Difference Between Impicit Index and Explicit Cursor
If an implicit index is created when we create a primary key, then what is the need of explicit cursor?
-
Get Numeric Values only using SQL ?
I have table with one column. type varchar..
PHONE
---------------
99samn44423m44
8034skdf3453a2
909090abc4567d
i want to get numeric values.. i mean my output will be
PHONE
---------------
994442344
80343453a2
9090904567
thanks in advance..
Sateesh -
TCL
What is mean by TCL, What are its commands?
-
Materialised View
What is difference between a table and a materialised view, a view and a materialised view?
-
Display Employee SELECT SQL Query
Display employees who are IT_prog and salary is greater than 3000 and department is not equal to 80 and having the manager as 103
-
Query to Get Highest Marks Output
Question: student marks stable "sp_report"
sid maths chem phy engl
1 33 45 54 48
2 55 32 50 37
3 10 20 30 40
The required o/p is (SQL QUERY TO GET THE BELOW O/P)
sid highest_marks
1 54
2 55
3 40
Ans