且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在SQL中的SELECT语句中使用REPLACE

更新时间:2023-01-19 17:12:00

如果包含扩展名的coloumn被称为扩展名,则在名为MyTable的表格中,

你可以像这样使用替换:

If the coloumn containg the extention is called "extension", in a table called "MyTable",
you can use replace like this:
SELECT Replace(Replace(extension, '{', '*.'), '}', ';') 
AS ext 
FROM MyTable





Best,

H



Best,
H


试试这个...



Try this...

SELECT REPLACE(REPLACE(REPLACE(coulum_extension,'{GIF}','*.GIF'), '{JPG}', "*.JPG"), "{PNG}", "*.PNG") FROM TableExtension ;