How do you write an SQL insert statement?
Answers were Sorted based on User's Feedback
Answer / srinivas reddy
In SQL Insert statement is
insert into tablename values(columnname1 datatype,
columnname2 datatype........)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / pravati
INSERT INTO tablename(column name1,column name2,column name3....)
VALUES(value1,value2,value3...)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vamsilakshman
create table tablename (sid int,sname varchar(20))
insert into tablename(1,'vamsi')
insert into tablename(2,'lakshman')
| Is This Answer Correct ? | 0 Yes | 0 No |
Which operator can be used to do an xor operation in vbscript?
What is vbscript?
What is parametrization ?
Mention what is variant in vbscript?
how do you make the variable declaration mandatory?what is the use of "option explicit"?
Which function is used in the vbscript language to convert the specified expression into a date type value?
Explain about arrays in vb script?
How to add actions in driver script to run those actions in QTP?
What is the use of "Option Explicit"?
Could Anybody tell me VBScript for Check if a given number is Prime number-Don't use any Built- in Functions Boolean/int is Prime(int number).. Thanks in advance.
The function template cocept is implemented in vb.net is ???
write a vb script to display factorial of a number using function