I have DB where not all columns in DB have values, but I need to get only those rows which have values. Example: My DB has 3 columns: "id", "first_name" and "last_name".
| id | first_name | last_name |
| -------- | ---------- | --------- |
| 001 | Josh | Irakly |
| 002 | Carl | Bruklin |
| 003 | | Drishlya |
| 004 | Bick | |
| 005 | | Mulan |
I want to get all rows where "first_name" column has value, example below:
| id | first_name | last_name |
| -------- | ---------- | --------- |
| 001 | Josh | Irakly |
| 002 | Carl | Bruklin |
| 004 | Bick | |