How do you write an SQL insert statement?

Answers were Sorted based on User's Feedback



How do you write an SQL insert statement?..

Answer / srinivas reddy

In SQL Insert statement is

insert into tablename values(columnname1 datatype,
columnname2 datatype........)

Is This Answer Correct ?    3 Yes 1 No

How do you write an SQL insert statement?..

Answer / pravati

INSERT INTO tablename(column name1,column name2,column name3....)
VALUES(value1,value2,value3...)

Is This Answer Correct ?    1 Yes 0 No

How do you write an SQL insert statement?..

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 do you write an SQL insert statement?..

Answer / ghanshyam vrema

USING ADO Command Object

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More VB Script Interview Questions

How to learn VB Script, Since iam working with QTP. So i need to learn VB script.

4 Answers   TCS,


Explain the tristate constants in vbscript?

0 Answers  


Which is the default Data types in VBScript?

7 Answers   AppLabs,


input values to accept 2 numbers & print the product, difference and sum using switch case

1 Answers   CSC,


HOW TO OPEN NEW TAB USING VB SCRIPT IN QTP?

1 Answers   TCS,






write a vbscript for traffic signal

1 Answers  


When does ‘on click of button’ event gets triggered in the vbscript language?

0 Answers  


How are arrays declared in the vbscript language?

0 Answers  


write a vb script to display the code "vbscripting" alphabet by alphabet(i e 1st v then b and up to g)

2 Answers  


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?

0 Answers   Nous,


Difference between Do while loop and while wend loop

1 Answers  


print the array values in ascending order?

2 Answers   CSS Corp,


Categories