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 will you convert a given number to long in vbscript?
Like OPTION EXPLICIT statement what are the other statements used in vbscript and their usage. Please post me all the statements please.
How will you reverse a string in vbscript?
Hi, I need to accept user inputs for login at runtime.I know i can use Inputbox but how to proceed further that i dont know. Thanks in advance
How to create a cookie using vbscript?
Please Example programms on vbscript 1)writing functions and calling functions
how to find the textfile in the folder and copy file from one folder to another folder useing parameterigation in QTP
What is the difference between for loop and while loop?
How to copy from one script to another script in qtp
When importing an excel file that has several columns each with different number of rows into QTP's Global datatable, how can you count the number of rows in a particular column?
3 Answers Logica CMG, McGraw Hill,
* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?
Which loop is used in case of arrays in the vbscript language?