M
mistux
I am trying to update a field that contains text and add some more tex
to it like I could in an MDB.
Field OrderNotes contains:
"First entry info"
I want to add to it, at the top some text so that the field no
contains:
"Second entry info"
"First entry info"
Here is what I have thus far:
(@WOID int, @Reason nvarchar(150))
AS
select[T_SetupSheetHistoryOrderNotes].OrderNotes
FROM [T_SetupSheetHistoryOrderNotes]
WHERE [T_SetupSheetHistoryOrderNotes].WOID=@WOID
UPDATETEXT [T_SetupSheetHistoryOrderNotes].OrderNotes 0 @Reaso
to it like I could in an MDB.
Field OrderNotes contains:
"First entry info"
I want to add to it, at the top some text so that the field no
contains:
"Second entry info"
"First entry info"
Here is what I have thus far:
(@WOID int, @Reason nvarchar(150))
AS
select[T_SetupSheetHistoryOrderNotes].OrderNotes
FROM [T_SetupSheetHistoryOrderNotes]
WHERE [T_SetupSheetHistoryOrderNotes].WOID=@WOID
UPDATETEXT [T_SetupSheetHistoryOrderNotes].OrderNotes 0 @Reaso