符号                   替代符号
 &        			   &

 <    				   &lt;

 >   			       &gt;

 "          		   &quot;

 '      		       &apos;
 
 >=                    &gt;=

 <=                    &lt;=

举例:查找状态大于等于0 的数据
select * from tb_user where tb_user_status &gt;= 0

更多推荐

SQL语句中大于等于小于的写法