queries [message #255367] |
Tue, 31 July 2007 09:44 |
sandeep1018
Messages: 1 Registered: July 2007 Location: hyderabd
|
Junior Member |
|
|
hello friends i just registered this forum today itself
can any one of you have any queries,
i mean only queries not the questions
under only SQL QUERIES ONLY
if so plzzzzzzzzzzzzzz can u send to my id
kumar.sandeeep@gmail.com
hope for the response
|
|
|
|
|
Re: queries [message #255453 is a reply to message #255402] |
Tue, 31 July 2007 23:48 |
sispk6
Messages: 164 Registered: November 2006 Location: pakistan
|
Senior Member |
|
|
select * from emp
where sal >
( select sal from emp
where upper(ename)='FORD')
ORDER BY SAL
|
|
|
Re: queries [message #255454 is a reply to message #255453] |
Tue, 31 July 2007 23:49 |
sispk6
Messages: 164 Registered: November 2006 Location: pakistan
|
Senior Member |
|
|
SELECT EMPNO , ENAME
FROM EMP
WHERE (DEPTNO , SAL) IN
( SELECT DEPTNO , SAL
FROM EMP
WHERE UPPER(ENAME)='SMITH')
AND ENAME != 'SMITH'
ORDER BY SAL
/
|
|
|
Re: queries [message #255493 is a reply to message #255367] |
Wed, 01 August 2007 01:10 |
|
Maaher
Messages: 7065 Registered: December 2001
|
Senior Member |
|
|
sandeep1018 wrote on Tue, 31 July 2007 16:44 | hello friends i just registered this forum today itself
| Welcome! The first thing to do would be to look around and read threads.
sandeep1018 wrote on Tue, 31 July 2007 16:44 | if so plzzzzzzzzzzzzzz can u send to my id <blabla>
| Syntax error.
Anyway, this one's closed. Moved to Homework, Training and Certification.
@sispk6: the same goes for you, use code tags.
MHE
[Updated on: Wed, 01 August 2007 01:11] Report message to a moderator
|
|
|