sql server - Does number of wildcard characters(specially %) matter in SQL Like Statement? -
sql server - Does number of wildcard characters(specially %) matter in SQL Like Statement? -
a question regarding utilize of % in t-sql like statement
i reading this question on , puzzled see 3 % in statement
i thought mean same , i.e. using
select * tbl name 'abc%'
and
select * tbl name 'abc%%%'
i need know if different , how?
no not.
see list of special characters on site (copying link, paragraph "arguments"):
% string of 0 or more characters. _ (underscore) single character.
on side note: sql fiddle neat testing kind of little things if don't have sql server management studio available.
edit: sry saw linked page in question, behavior of wildchard characters matches page states behavior.
sql sql-server tsql
Comments
Post a Comment