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
Describe the left outer join & right outer join. : sql server database administration
How to create a view on an existing table in ms sql server?
What is the recommended total size of your memory optimized tables?
Do you know how to store and query spatial data?
how to create a scrollable cursor with the scroll option? : Sql server database administration
‘Order by’ is not allowed in a view how can you sort information from a view?
What is the difference between ROW_NUMBER and Ranking function in SQL SERVER?
Is mysql the same as sql server?
Can we use pragma autonomous_transaction in trigger?
can a database be shrunk with users active? : Sql server administration
Explain important index characteristics?
What is the use of custom fields in report?
Explain about Normalization?
What is the difference between MVC and Teir Architecher? Plz explain with Layyered Programming example...? Thanks
What is user-defined scalar function?