Viewing 4 posts - 1 through 4 (of 4 total)
In theory yes but in reality possibly not. In the real StockItemMemo table there is a column for the last updated datetime so I'm just going to do a TOP...
September 11, 2020 at 5:52 pm
I think you've misunderstood what I'm looking for.
Someone on another site has provided the below which is doing what I want:
DECLARE @title as VARCHAR(MAX) = 'Title:';
; WITH...
September 11, 2020 at 3:11 pm
Unfortunately, that is giving the same result as my query above:
ItemID SKU ...
September 11, 2020 at 2:39 pm
The below is the part of the query shown above that looks up the title
(SELECT TOP 1 MemoText FROM StockItemMemo WHERE StockItemMemo.ItemID = StockItem.ItemId and MemoText like...
September 11, 2020 at 2:28 pm
Viewing 4 posts - 1 through 4 (of 4 total)