I have a table called customer which got
id = int
name = varchar
address = varchar
email= varchar
can you please write the syntax that insert the below data in the table using query Analyzer
id = 1
name = fadil
Address = London
email = fadil1977@.hotmail.com
Thank you for your time and help.INSERT INTO Customer
VALUES (1, 'fadil', 'London', 'fadil1977@.hotmail.com')
No comments:
Post a Comment