Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SELECT statement in query

Status
Not open for further replies.

Tiredmom

MIS
May 18, 1999
9
US
I am having trouble in a query. I have tried to build the following statement with the intention of populating a Point Status field but only when the position is filled. The following is what I tried but I get various error messages.

Expr: (SELECT[T:posting Master].[Pt Status] FROM [T:posting Master].[Pt Status]WHERE[T:posting Master].[Status] = "Filled")

I am ready for a lobotomy.
 
you need to select the field from table: SELECT[T:posting Master].[Pt Status] FROM [T:posting Master]WHERE[T:posting Master].[Status] = "Filled" in SQL view and make sure [status] is a field in your table [t:posting master].
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top