select 1,col1,col2 from table1. output?

Answers were Sorted based on User's Feedback



select 1,col1,col2 from table1. output?..

Answer / selvaraj anna university coe

SQL> SELECT 1,emp_no,emp_name FROM emp;

1 EMP_NO EMP_NAME
--------- --------- -------------------------
1 100 SELVA
1 101 RAJ
1 102 A S KALA
1 103 JESLIN FANTA MALAR
1 104 ANITA
1 105 MURUGU
1 106 SRIVATSAN
1 107 SARABOOT
1 108 KARTHI SIR
1 109 SUDHA
1 110 MERCHI
1 111 SAVI

12 rows selected.

Is This Answer Correct ?    28 Yes 1 No

select 1,col1,col2 from table1. output?..

Answer / chakri

Hi friend,

In the above Select statement 1 is constant so it will
display with respect to the other columns infromation

Result for ur query:

column_heading no_col col2_2 col3_3

1 name1 3000
1 name2 2000

in this way it will display the result.

Is This Answer Correct ?    17 Yes 2 No

select 1,col1,col2 from table1. output?..

Answer / pandian s

(No column Name) Col1 Col2
1 xx xx
1 xx xx

Note: 'xx' is nothing but Columns' actual data.

Is This Answer Correct ?    6 Yes 0 No

select 1,col1,col2 from table1. output?..

Answer / sheikbachan

hi I'M sheikbachan


select 1 col1,col2 from table

output
col1 col2
1 a
1 b
1 c
1 d

Is This Answer Correct ?    5 Yes 0 No

select 1,col1,col2 from table1. output?..

Answer / sharmila ramuka

There will b error.Coz if we write
select 1, col2 from table1;
then its correct butthis ill gv n error.

Is This Answer Correct ?    2 Yes 14 No

Post New Answer

More SQL PLSQL Interview Questions

How do rank () and dense_rank () differ?

0 Answers  


What are all the different types of indexes?

0 Answers  


What is sql and its types?

0 Answers  


What are sql indexes?

0 Answers  


What are local and global variables and their differences?

0 Answers  






Why use truncate instead of delete?

0 Answers  


what is a record in a database ? : Sql dba

0 Answers  


Which language is used in sql?

0 Answers  


How do you use collections in procedure to return the resultset?

0 Answers  


How does one load ebcdic data? : aql loader

0 Answers  


What is aggregate function in sql?

0 Answers  


Why we use cross join?

0 Answers  


Categories