Why is a primary key important?
What is where clause in sql?
Why do we use joins?
Does inner join remove duplicates?
Explain UNION,MINUS,UNION ALL, INTERSECT?
What are user defined stored procedures ?
what is oltp (online transaction processing)? : Sql dba
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
Create table emp (id number(9), name varchar2(20),salary number(9,2)); The table has 100 records after table created.Now i nee to change id's Datatype is to be Varchar2(15). now Alter table emp modify(id varchar2(15),name varchar2(20), salary number(9,2)); Whether it will work or returns error? post answer with explanation.
I Have A Table Like This. Cityno Cityname Mails 1 Bangalore 8km 2 Hsr Layout 20km 3 Mejistic 30km 4 Jayadeva 55km 5 Itpl 80km 6 Hebbal 115km I Have Data Like This I Want O/p Like This Distance No.ofcity 0-50km 3 51-100km 2 101-150km 4 And So On
How do I truncate a sql log file?
How to order siblings in oracle hierarchy queries?
What is a left join?