views:

174

answers:

1

How do i view the warning(s) after a SELECT query? The results of one query is

Empty set, 1 warning (0.01 sec)

I am using mysql via command line on linux.

+2  A: 

Using the SHOW WARNINGS syntax

SHOW WARNINGS;
Greg