in sql, I'd like to get all rows, where the slash '/' as character exists only once.
For exapmle:
[table1]
id | path_name |
1 | "/abc/def/"|
2 | "/abc" |
3 | "/a/b/cdfe"|
4 | "/hello" |
select * from table1 where path_name=.... ;
So in this example, I want to have only the second and fourth row...
How do I have to form this statement?