1. 程式人生 > >sql的一些知識_通配符

sql的一些知識_通配符

通配符 null color div spa from weight nbsp use

like操作符

通配符只能用於字符串查詢

  • % 指任意字符出現任意次數,包括0次,不包括NULL
    SELECT username,weight,age FROM userinfo WHERE username LIKE 張%

  • _ 指任意字符出現1次
    SELECT username,weight,age FROM userinfo WHERE username LIKE 張_

sql的一些知識_通配符