postgresql where clause not working code example
Example: postgresql where clause not working
SELECT *
FROM
logs
WHERE
type = 'Exception';
// note the use of single quote
SELECT *
FROM
logs
WHERE
type = 'Exception';
// note the use of single quote