Viewing 5 posts - 16 through 20 (of 20 total)
WITH CTE_NA AS
(
SELECT
ContractNum
, Name
, ROW_NUMBER()OVER(PARTITION BY ContractNum Order BY CASE WHEN Name='N/A' THEN 1 ELSE 2 END) AS seq
FROM #USER
)
August 10, 2018 at 3:39 pm
Declare...August 4, 2018 at 12:22 pm
Hi All,
I am very bad at formatting,please dont mine.Let me know if it works for you!!
SELECT
QL.USERAccounts
, QL.Accounttype
, QL.Billingcode
February 27, 2018 at 3:41 pm
I have tried with getdate please change it to the date you need and I have convereted into a string..
UPDATE [EC_StoreAttributes]
SET Left(AttributeValue, 2)...
February 14, 2018 at 9:27 am
Viewing 5 posts - 16 through 20 (of 20 total)