How to get StringValue from database if it is null
Good Afternoon Team,
Can you help me how we can get the StringValue.Value2 from part if it is null
here is the query I am running right now which gives only those parts which Have StringValue.Value2 something in DB
from WTPartmaster pm, WTPart p ,PDMLINKPRODUCT prd, StringValue sv, STRINGDEFINITION sd
where pm.IDA2A2 = p.IDA3MASTERREFERENCE and pm.IDA3CONTAINERREFERENCE = prd.IDA2A2
and sd.NAME = 'test1' and sv.IDA3A4 = p.IDA2A2 and p.versionsortida2versioninfo=(select max (c.versionsortida2versioninfo)
from wcadmin.wtpart c
where c.ida3masterreference = p.ida3masterreference) and p.LATESTITERATIONINFO = 1 and sd.ida2a2 = sv.IDA3A6 ;

