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
Answer / sachin rathi
insert into TBL_Register values
(@Username,@UserTeleNo,current_timestamp)
Is This Answer Correct ? | 2 Yes | 1 No |
How to link up the text file to a Database table?
What is a NOLOCK?
What are the characteristics of modern DBMS?
What do you understand by hotfixes and patches in sql server?
What is blocking and how would you troubleshoot it?
Can I recover a damaged SQL Server 2008 database with the undamaged .mdb and .ldf files?
How to count groups returned with the group by clause in ms sql server?
Explain the properties of the relational tables?
If you want to send some data from access database to sql server database. What are different component of ssis will you use?
What is the default server name for sql server?
Write down the syntax and an example for create, rename and delete index?
What is a deadlock and what is a live lock?