Avatar of gabepcsolutions
gabepcsolutions

asked on 

SELECT, FROM, WHERE, REPLACE COMMANDS

Need help with the REPLACE command. After running this SELECT :

SELECT     CATEGORY, QTY_STK, ACTIVE
FROM         ITEMS
WHERE     (CATEGORY = '166') AND (QTY_STK = 0) AND (ACTIVE = 'T')

I need to replace the ACTIVE='T' with ACTIVE='F' , what would the syntax be?
Operating SystemsSQL

Avatar of undefined
Last Comment
frankytee

8/22/2022 - Mon