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 |
How to learn VB Script, Since iam working with QTP. So i need to learn VB script.
Explain the tristate constants in vbscript?
Which is the default Data types in VBScript?
input values to accept 2 numbers & print the product, difference and sum using switch case
HOW TO OPEN NEW TAB USING VB SCRIPT IN QTP?
write a vbscript for traffic signal
When does ‘on click of button’ event gets triggered in the vbscript language?
How are arrays declared in the vbscript language?
write a vb script to display the code "vbscripting" alphabet by alphabet(i e 1st v then b and up to g)
In the Web page we have a table link, if we click on that link all the contents under that link will be sorted (asscending/Descending). Now i want to check in which order the list is ? for that i need to get the data in to some var How can i get that cells data?
Difference between Do while loop and while wend loop
print the array values in ascending order?