Null values in sql | null values in sql | sql server interview question and answer | sql part 22

preview_player
Показать описание

For Quiz-

Find Us On FaceBook-
Рекомендации по теме
Комментарии
Автор

create table Nullvalues_Tbl
(
id int,
val int
)
insert into Nullvalues_Tbl
select 1, 10
union
select 1, 11
union
select 1, NULL
union
select 1, NULL
union
select 2, 10
union
select 3, NULL
union
select 4, NULL
union
select 4, NULL
union
select 5, 10

SELECT * FROM Nullvalues_Tbl

GaneshNaduvathati
Автор

Can anyone help why order by 1 was used. Instead of Order by id

mohneeshmalik
join shbcf.ru