How is a Sybase table created?

Questions by scott   answers by scott

Showing Answers 1 - 3 of 3 Answers

Ganapathi Masilamani

  • Jul 5th, 2007
 

Live table will be created using:
1.
Create table


(
column name datatype
)


2.
Select * into from


e-x: select * into new_emp from emp


Temp Table will be created using:
1.
Create table <#table name>
(
column name datatype
)


2.
Select * into <#live table> from
e-x: select * into #emp from emp


Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions