|
ALTER PROCEDURE dbo.SelectAnnounce
AS
/ * SET NOCOUNT ON * /
SELECT A. *
FROM Customer.dbo.Announce A
INNER JOIN aspnetdb.dbo.aspnet_Users U
ON A.AuthorID = U.UserID
/ * select * from Announce * /
Hint: The object name Customer.dbo.Announce A is invalid.
what happened? |
|