select count(test) from table where exists (select test from table)
How to select based on the condition of a column exists? It column test is not exists, a message need to be returned.
You have to query the system catalog (or information schema) for the absence of an expected row. Otherwise the only message you will end up returning is "column not found" since you cannot write and execute an SQL query without knowing and defining its entire structure.
Alternatively, you write a function with an exception block.
David J.
Есть вопросы? Напишите нам!
Соглашаюсь с условиями обработки персональных данных
✖
By continuing to browse this website, you agree to the use of cookies. Go to Privacy Policy.