show/hide this revision's text 4 added 352 characters in body
select * from Tags
where '|ruby|rails|scruffy|rubyonrails|'
like '%|' + Name + '|%'

EDIT: One caveat to Joel's solution. This is clever, but it forces an Index Scan instead of an Index Seek (because LIKE %x% cannot be indexed, whereas LIKE x% can), so it will be at least 10x slower. This may or may not matter depending on the size of your table.

EDIT: C# code to parameterize:

string[] tags = new string[] { "ruby", "rails", "scruffy", "rubyonrails" };
const string cmdText = "select * from tags where '|' + @tags + '|' like '%|' + Name + '|%'";

using (SqlCommand cmd = new SqlCommand(cmdText)) {
   cmd.Parameters.AddWithValue("@tags", string.Join("|", tags);
}
show/hide this revision's text 3 added 315 characters in body
select * from Tags
where '|ruby|rails|scruffy|rubyonrails|'
like '%|' + Name + '|%'

EDIT: One caveat to Joel's solution. This is clever, but it forces an Index Scan instead of an Index Seek (because LIKE %x% cannot be indexed, whereas LIKE x% can), so it will be at least 10x slower. This may or may not matter depending on the size of your table.

show/hide this revision's text 2 added 3 characters in body
select * from Tags
where '|ruby|rails|' |ruby|rails|scruffy|rubyonrails|'
like '%|' + s Name + '|%'
show/hide this revision's text 1