ÎÒÏë×÷ÕâÑùµÄÒ»¸ö²éѯ£¬¿ÉÊÇÕâÑùµÄ²éѯÊDz»¿ÉÒÔ£¬Ó¦¸ÃÔõÑùʵÏÖÕâÑùµÄ¹¦ÄÜÄØ£¿select * from table where len(name) > 10 SQL code: select * from [table] where len(name)>10
select * from table where len(name) > 10
--Èç¹ûҪȥµôǰºó¿Õ¸ñ. select * from table where len(rtrim(ltrim(name))) > 10
select * from [table] where len(name)>10 SQL code: --? select * from [table] where len(name)>10 select * from [table] where datalength(name)>10
SQL code: select * from table_name where len(col_name) > 10
tableÊǹؼü×Ö,×îºÃ¼ÓÉÏ[]
select * from [table] where len(name) > 10
--Èç¹ûҪȥµôǰºó¿Õ¸ñ. select * from [table] where len(rtrim(ltrim(name))) > 10