if a string is there like s1,s2,s3,s4.How to find count of
commas in this.
Answers were Sorted based on User's Feedback
Answer / ajit
select 's1,s2,s3,s4' str,
length('s1,s2,s3,s4') - length(replace('s1,s2,s3,s4', ',')) str2
from dual;
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / prashant
14:41:23 SQL> SELECT regexp_count ('s1,s2,s3,s4', ',')
14:41:24 2 FROM DUAL;
REGEXP_COUNT('S1,S2,S3,S4',',')
-------------------------------
3
Elapsed: 00:00:00.00
14:41:26 SQL>
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / debbie
select
length('s1,s2,s3,s4')-length(replace('s1,s2,s3,s4',',')) as
Count_comma from dual
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashok
SELECT LENGTH(REGEXP_REPLACE('s1,s2,s3,s4', '[s0-9]', '')) FROM dual
Is This Answer Correct ? | 1 Yes | 0 No |
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
Can sql developer connect to db2?
What is the difference between SQL Constraint and PL/SQL constraint.Pls give all the constraint name.
How many sql commands are there?
What is the location of pre_defined_functions.
What is the difference between join and union.
27 Answers 3i Infotech, ABC, Oracle, Polaris, TCS, XT Global,
How to read xml file in oracle pl sql?
If we declare constraints Unique and Not null on a single column then it will act as a Primary key, so what is the use of primary key??
Does mysql_real_escape_string prevent sql injection?
Is sql dba a good career? : SQL DBA
what are the different functions in sorting an array? : Sql dba
Can you selectively load only those records that you need? : aql loader