Wednesday, 17 October 2012

How To Enter Boolean Values in SQL Statements? | MySQL Interview Questions

If you want to enter Boolean values in SQL statements, you use (TRUE), (FALSE), (true), or (false).
Examples:
SELECT TRUE, true, FALSE, false FROM DUAL;

No comments: