基本上我在 SQL Server 中有一个具有图标图像名称的列
有点像
ICON
------------
Icon001
Icon002.png
Icon003.png
Icon004.png
Icon005
Icon006.png
Icon007.png
我试图弄清楚如何编写一个脚本来.png
从拥有它的脚本中删除所有
我试过了
Update [dbo].[screen].[icon]
set ICON = ICON - '%.png%'
where ICON LIKE '%.png%'
但这不起作用。
有谁能够帮助我?