Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select 'Lighting Foundations - 100` Poles' string from dual;
STRING
---------------------------------
Lighting Foundations - 100` Poles
select 'Lighting Foundations - 100'' Poles' string from dual;
STRING
---------------------------------
Lighting Foundations - 100' Poles
select replace('Lighting Foundations - 100^ Poles','^',chr(39)) string from dual;
STRING
---------------------------------
Lighting Foundations - 100' Poles
MERGE INTO DETAILS37150433 dp USING ( SELECT 199077 as id FROM dual) dp1 ON ( dp.ID = dp1.id ) WHEN MATCHED THEN UPDATE SET Category2='Lighting Foundations - 100'' Poles' WHEN NOT MATCHED THEN INSERT (ID,PROGRESSTYPE,CONTRACT, Category2) VALUES (199077,185864,37150433,'Lighting Foundations - 100'' Poles')
replace(in_str, '''', '''''')