Let’s say the table in the database is named as
TBL_Register. The fields in this table include:
1. User_Name,
2. User_Telephone,
3. Register_Date
The field Register_Date stores the current date and time of
the registration.

Write the SQL statement that inserts the data into the
table.

Answers were Sorted based on User's Feedback



Let’s say the table in the database is named as TBL_Register. The fields in this table include: ..

Answer / suresh

insert into TBL_Register values
(@Username,@UserTeleNo,getdate())

Is This Answer Correct ?    8 Yes 0 No

Let’s say the table in the database is named as TBL_Register. The fields in this table include: ..

Answer / sachin rathi

insert into TBL_Register values
(@Username,@UserTeleNo,current_timestamp)

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More SQL Server Interview Questions

How can you see what type of locks used?

1 Answers  


What are the benefits of filtered indexes?

0 Answers  


What is ssl in sql server?

0 Answers  


What is mean by clustered index and non clustered index, give syntax of creation? : sql server database administration

0 Answers  


Explain intellisense for query editing

0 Answers  






How will you collect the date from current date to last older 6 days date in sql server 2005

4 Answers  


What is the difference between SSAS 2000 and SSAS 2005?

1 Answers   APX,


Which is better statement or preparedstatement?

0 Answers  


John exports information periodically from a microsoft sql server database to an oracle database what is the best way to do this?

0 Answers  


What happens if null values are involved in bitwise operations?

0 Answers  


what is trigger

1 Answers   CarrizalSoft Technologies, NIIT,


Is null in sql server?

0 Answers  


Categories