sql statment

Hello to all I believe i have seen the answer to this question before but can?t find it I need to remove " from my item description field on all items thanks in advance

Reply to
hozay
Loading thread data ...

update item set description=replace(description,'"','') where description like '%"%'

Reply to
Matt Hurst

Reply to
hozay

very similar:

update item set itemlookupcode=replace(itemlookupcode,' ','') where itemlookupcode like '% %'

Reply to
Matt Hurst

Thanks matt Now I?m going to take advantage of you LOL Can you give me a command to remove supplier from items that are no longer In the system (deleted suppliers)

"Matt Hurst" wrote:

Reply to
hozay

It sounds like you have removed a supplier from you vendor list but now want to remove mention of that supplier from any item they used to provide. If so, try this command:

delete supplierlist from supplierlist left join supplier on supplierid=supplier.id where supplier.id is null

Reply to
Matt Hurst

Reply to
hozay

BeanSmart website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.