如何在一个oracle sql语句中删除空格,特殊字符和数字

时间:2016-09-28 08:11:07

标签: sql oracle

如何在一个oracle sql语句中删除空格,特殊字符和数字

修改

到目前为止尝试过:

defaultConfig {
        multiDexEnabled true
}

SELECT REGEXP_REPLACE(NAME ,'[^[:alnum:]'' '']', NULL) FROM table

1 个答案:

答案 0 :(得分:0)

假设您要删除与字母不同的所有字符,可以尝试以下操作:

var templateFromUrlLoader = {
    loadTemplate: function(name, templateConfig, callback) {
        var newUrl = url + 'others/loadFile/';
        var params = { 'filename' : templateConfig.filename };

        if (templateConfig.filename) {
            // Uses jQuery's ajax facility to load the markup from a file
            $.get(newUrl, params, function(markupString) {
                // We need an array of DOM nodes, not a string.
                // We can use the default loader to convert to the
                // required format.
                ko.components.defaultLoader.loadTemplate(name, markupString, callback);
            });
        } else {
            // Unrecognized config format. Let another loader handle it.
            callback(null);
        }
    }
};

// Registering it
ko.components.loaders.unshift(templateFromUrlLoader);