필드가 비어 있는지 확인하는 Mysql 방법: isnull() 함수를 사용하여 확인할 수 있습니다. 구체적인 코드는 [select * from users where email = 'xxxx' and isnull(deletedAt)]입니다.
MySQL은 스웨덴 MySQL AB 회사에서 개발한 관계형 데이터베이스 관리 시스템으로 현재 Oracle의 제품입니다. MySQL은 가장 널리 사용되는 관계형 데이터베이스 관리 시스템 중 하나입니다. 웹 애플리케이션 측면에서 MySQL은 최고의 RDBMS(관계형 데이터베이스 관리 시스템) 애플리케이션 소프트웨어입니다.
(추천 튜토리얼: mysql 동영상 튜토리얼)
mysql의 특정 필드가 비어 있는지 확인해야 할 때? 그것을 달성하는 방법?
다음 5가지 쿼리 방법이 있습니다.
isnull()
select * from users where email = 'xxxx' and isnull(deletedAt)
is null
select * from users where email = 'xxxx' and deletedAt is null
is null이 아닙니다
select * from users where email = 'xxxx' and deletedAt is not null
!isnull()
select * from users where email = 'xxxx' and !isnull(deletedAt) select * from users where email = 'xxxx' and not isnull(deletedAt)
isfull
쿼리 조건이 null인 경우 지정된 문자로 대체
select name, isfull(gender,'未知') as gender from users where email = 'xxxx'
위 내용은 mysql에서 필드가 비어 있는지 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!