2016-11-29 52 views
-1

我試圖搜索以/開頭的元素是查詢。在sql條件下使用farword斜槓條件

我已經嘗試過...

Select id,url from myindex where url='[/]%' ; 

Select id,url from myindex where url='/%'; 

,但沒有奏效。
有什麼建議可以解決這個問題?

+0

@Amol Solanke你可以這樣說,它不完全相同,我的問題。但爲什麼是負面投票? –

+0

@Amol Solanke我已經做了我的努力..這就是爲什麼我已經把我已經嘗試過。 –

+0

好的謝謝........................................ –

回答

1

你不想要=。你想要like。二是在MySQL的路要走:

Select id, url 
from myindex 
where url like '/%'; 
0
Select id,url from myindex where url like '/%'; 
0

使用MySQL 通配符運營商。在你的情況下試試這個

Select id,url 
from myindex 
where url like '/%';