SQL Query to retrieve all Junior Girls

SQL query to retrieve all junior girls


SELECT *
FROM Member m
WHERE m.MemberType = 'Junior'
      AND m.Gender = 'F';

Conclusion

The above query useful to retrieve all junior girls.

Comments

Popular posts from this blog

Top myths for NULL value in SQL Queries