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);
}
