shilpa-pandit Ответов: 3

как запустить этот запрос,не отображайте нулевой столбец


привет всем
у меня есть таблица с 5 столбцами, 3 столбца с доступными данными , 2 столбца с нулевыми значениями
я хочу выполнить запрос с доступными столбцами данных, но не должен отображать столбцы нулевых значений.

3 Ответов

Рейтинг:
2

Abhinav S

Попробуй select * from myTable where myColumn IS NOT NULL


Рейтинг:
2

pkarthionline

select top 10 * membertable 
where col71 is not null and col72 is not null and col73 is not null and col74 is not null and col75 is not null and
 col76 is not null and col77 is not null and col78 is not null and col79 is not null and col80 is not null and
 col81 is not null and col82 is not null and col83 is not null and col84 is not null and col85 is not null and
  col86 is not null and col87 is not null and col88 is not null and col89 is not null and col90 is not null and
   col91 is not null and col92 is not null and col93 is not null and col94 is not null and col95 is not null and
   col96 is not null and col97 is not null and col98 is not null and col99 is not null and col100 is not null


но он отображает все столбцы.как изменить запрос?


Richard Deeming

Если вы хотите задать вопрос, то ЗАДАВАТЬ ВОПРОС[^]. НЕ разместите свой вопрос как "решение" на чей-то другой вопрос.

Но вам нужно будет обеспечить гораздо больше информация, чем у вас есть здесь, Если вы хотите, чтобы кто-то мог ответить на ваш вопрос.

Рейтинг:
1

Shameel

SELECT Col1, Col2, .........
FROM Table1
WHERE Col3 IS NOT NULL
AND Col4 IS NOT NULL