I have a database and I've made a view with the data I want. The data looks something like this:
n | value |
----------+---------+
50404791 | 112 |
5034591 | 164 |
50280287 | 31 |
I want to add a column of text like this:
n | value | status |
----------+---------+--------+
50404791 | 112 |default |
5034591 | 164 |biggest |
50280287 | 31 |smallest|
I tried Alter Table Table1 Add Column status text ;
but it seems like text is not a data type. Any suggestions what to do?