What does the expression MySQL SELECT NULL FROM table_name mean? As I understand it, it is often used in combination with IF EXISTS or IF NOT EXISTS , for example:
IF NOT EXISTS(SELECT NULL FROM table_name WHERE ...) But what is it used for, what is the meaning of this expression?