I have a table with single column.
EmailTable
| NotifyEmail |
|---|
| mom@gmail.com |
No id no nothing just single row single column. So how do I update this row with new value?
I tried:
UPDATE NotifyEmail
FROM EmailTable
SET dad@gmail.com
It's not working.
edit, my table do not have ID. It's just a single column.