A Gentle Introduction to SQL
http://sqlzoo.net/
SQLCourse - Interactive Online SQL Training for Beginners
http://sqlcourse.com/
SQLCourse2 - Advanced Online SQL Training
http://sqlcourse2.com/
SQL Exercises - Online SQL (DML) Training
<a href="http://www.sql-ex.ru/">www.sql-ex.ru/</a>
w3schools
you want online free test check this:
it is more usefull............
www.wiziq.com/tests/sql
/////////////////////////////////////
www.sqlzoo.net
//////////////////////////////////////
Last Wiki Answer Submitted: April 17, 2013 7:07 pm by Michael Tidmarsh11,380 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
SELECT Title, FristName, LastName, Phone, Location From Employees, Office Where Employees.EmpID=Location.EmpID AND Dept= “operation” Order By Employees,
There is something wrong and I can’t figure it out.
Since you didn’t tell us anything about what the DBMS is nor anything about the tables nor what is wrong, it’s not easy for us to figure anything either. (Though there’s at least one and possibly two fairly obvious possibilities.)
And since this has nothing to do with this question thread, I suggest you open a new question. When you do, give us enough information to make useful guesses at least.
i like it most
thanks
SELECT Title, FristName, LastName, Phone, LocationFrom Employees, Office
Where Employees.EmpID=Location.EmpID AND
Dept= “operation”
Order By Employees,
There is something wrong and I can’t figure it out.
theirs something wrong and i cant figure it out.
Since you didn’t tell us anything about what the DBMS is nor anything about the tables nor what is wrong, it’s not easy for us to figure anything either. (Though there’s at least one and possibly two fairly obvious possibilities.)
And since this has nothing to do with this question thread, I suggest you open a new question. When you do, give us enough information to make useful guesses at least.
Tom
Many mistakes. Try this:
SELECT Title, FirstName, LastName, Phone, LocationFrom Employees, OfficeWhere Employees.EmpID=Office.EmpID AND Dept= 'operation'Order By Employees.FirstName
Carlosdl shares his thoughts on how to run a query using both SQL Server and Oracle databases.