jitter (Index: 1200) to 223.28.1.xxx ;
jitter (Index: 900) to 223.28.0.xx ;
jitter (Index: 700) to 223.28.1.xxx ;
如何从' 223开始直到结束' ? 目前,我正在使用子字符串(resource_name,24),但我的解决方案不适合,因为它无法满足所有新要求。
答案 0 :(得分:1)
使用带有位置的子字符串(字符串中的子字符串) 它告诉你字符串中223的位置。 PostgresSQL Documentation
中的更多信息像这样:
SELECT substring(resource_name, poisition('223' in resource_name))
答案 1 :(得分:0)
使用以下查询
select substring(resource_name,locate('223',resource_name)) from <table_name>
了解更多字符串函数click here