JamesMuglia
Programmer
It seems that SQL 7.0 does not like sub queries in its INSERT and UPDATE function using.
Example: UPDATE Ledger
SET Status = '4'
SELECT L.Status
FROM Ledger L
WHERE L.Status = '3'
SQL Sever returns the following error "Subquery Return More Than One Value, This Is Not Permitted When The
Subquerie Follows '=', '<>', '<=',ect...."
The online help made mention of using table alias but this has not given me results yet. I have also viewed the incompatabilities section for SQL server and there are some differences. If you have any suggests please assist.
Thank You, Mark Mathews
Example: UPDATE Ledger
SET Status = '4'
SELECT L.Status
FROM Ledger L
WHERE L.Status = '3'
SQL Sever returns the following error "Subquery Return More Than One Value, This Is Not Permitted When The
Subquerie Follows '=', '<>', '<=',ect...."
The online help made mention of using table alias but this has not given me results yet. I have also viewed the incompatabilities section for SQL server and there are some differences. If you have any suggests please assist.
Thank You, Mark Mathews