在sql中,我想獲得所有的行,其中斜槓'/'作爲字符只存在一次。SQL選擇一個獨特的字符
對於exapmle:
[table1]
id | path_name |
1 | "/abc/def/"|
2 | "/abc" |
3 | "https://stackoverflow.com/a/b/cdfe"|
4 | "/hello" |
select * from table1 where path_name=.... ;
所以在這個例子,我想有隻第二和第四行......
如何做我必須成立這種說法?
什麼口味SQL的? – 2013-02-28 12:21:17
使用像'%/%'而不是'%/%/%' – Sachin 2013-02-28 12:22:25