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 is the purpose of a table?
What are the different types of backups that exist?
What are data files?
What is partition, how will you implement it? : sql server analysis services, ssas
What is normalization and its types?
Can we use having clause without group by?
What is the difference between row_number and dense_rank?
Sql studio em braces a variety of capabilities, but will I need them all? Is there a simpler product ? : sql server management studio
Does dbcc checkdb requires db to be in single_user mode? : sql server database administration
Explain something about security and SQL Azure?
Give an example of SQL injection attack ?
Does an index slow down updates on indexed columns?
What is a full text index?
How many tables can be joined in SQL Server?
What are parameterized reports?