Computer Science, asked by parth1287, 1 year ago

SELECT not null column from two columns in MySQL?

Answers

Answered by Jyotimodi
0

NULL is a non-value, so it can be assigned to TEXT columns, INTEGER columns or any other datatype. A column can not contain NULLs only if it has been declared as NOT NULL (see ALTER TABLE). select count(Birth_place) from Singer; 0 and sum(NULL) gives a NULL answer.

Similar questions