create table temp(sno number,Name VARCHAR2(10))
Table created.
insert all
into temp values(1,'Santhosh')
into temp values(2,NULL)
into temp values(3,'Chris')
into temp values(4,'Conor')
into temp values(5,'TOM KYTE')
into temp values(7,'Steven')
select * from dual
6 row(s) inserted.
select count(*) from temp
COUNT(*) | 6 |
---|
select name from temp
NAME | Santhosh | - | Chris | Conor | TOM KYTE | Steven |
---|
select count(name) from temp
COUNT(NAME) | 5 |
---|
insert into temp values (NULL,NULL)
1 row(s) inserted.
insert into temp values (NULL,NULL)
1 row(s) inserted.
select * from temp
SNO | NAME | - | - | 1 | Santhosh | 2 | - | 3 | Chris | 4 | Conor | 5 | TOM KYTE | 7 | Steven | - | - |
---|
select count(*) from temp
COUNT(*) | 8 |
---|