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.
Answer Posted / suresh
insert into TBL_Register values
(@Username,@UserTeleNo,getdate())
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What are page splits?
What is difference between count (*) and count column?
What is tablesample?
What is ms sql server reporting services?
How can a database be repaired?
What are the limitations in ssrs on sql server express edition?
What is built-in function?
Can you explain important index characteristics?
What is the difference between dbcc indexdefrag and dbcc reindex?
What is a partitioned view?
what is denormalization and when would you go for it? : Sql server database administration
How to Update from select query in sql server?
What is the use of keyword with encryption.
Explain how you can configure a running aggregate in SSRS?
How exceptions can be handled in sql server programming?