我在SQL Server中有一个数据库,其中有一个包含单个列URL
的表,其中包含URL。
我有1000行(假设)。
现在我需要找到哪个网址包含我要讲的文字。
示例:
Sr. URL
1 http://example.com
2 http://example2.com
如果我有这些数据,我需要找到哪一行包含example2
或只是2
,那么我应该给我一些特定的行。
答案 0 :(得分:3)
select id from table where URL like ('%example%');