Needed a SQL query for this----------I have table with columns firstname, lastname and phone number and we have 2 entries in that table ...now I want to know the persons with this combination firstname
Latest Answer: I think you can use the cartesian product on the same table and try to get the data out of that. try this and let me know. ...
Latest Answer: select (to_date('31/01/2008','dd/mm/rrrr')-to_date('01/01/2008','dd/mm/rrrr')+1) - (select count(days) from (selectto_char(to_date('01/01/2008','dd/mm/rrrr')+level,'D') daysfrom dual connect by level ...
How to insert of only system time(hh:mi:ss) into table columnnot in the format of 'dd/mm/yyy hh:mi:ss' only system time not date.
How can we find the number of day's between any two given date's by using the dual table only?
How to add a primary key to a table that is not having any primary key?How to display the Date of birth from a table in the dd-mm-yyyy format?
What is Locking? Explain types of Locking? Explain example of Locking? What is database link? Explain types of database link? Explain example of database link?
Latest Answer: To process an SQL statement, a DBMS performs the following five steps: The DBMS first parses the SQL statement. It breaks the statement up into individual words, called tokens, makes sure that the statement has a valid verb and valid clauses, and so on. ...
Latest Answer: hi,select sno,sname,(case when total>50then 'good'when total>35 and total
Latest Answer: SELECT BYTES/1024 FROM DBA_EXTENTS WHERE OWNER = 'SCOTT' AND SEGMENT_NAME = 'EMP'; This will return you size of table in Kilo Bytes. User is Scott and Table ...
View page << Previous 2 3 4 5 [6] 7 8 9 10 11 Next >>

Go Top