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 / sachin rathi
insert into TBL_Register values
(@Username,@UserTeleNo,current_timestamp)
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are entities and relationships?
Explain important index characteristics?
What is candidate key with example?
Explain the concept of recursive stored procedure.
What is a not null constraint?
Does sql server use java?
How can i Relate Tables in SSIS
What is the command to change the recovery model?
where can you add custom error messages to sql server? : Sql server administration
How can you insert values in multiple rows using one Insert statement?
Give some Scenario for Non Clusterd index? Can we write system defined functions in side The Function? Wat is the Unique Datatype?
What is the native system stored procedure to execute a command against all databases?
What is the difference between a clustered index and a non-clustered index?
What is the purpose of sql profiler in sql server?
How can we solve concurrency problems?