In the below code i want to use select statement for getting customer address1,customeraddress2,customerphone,customercity,customerstate,customercountry,customerfirstname,customerlastname from customer table.Rest of the things will be as it is in the following code.How do i do this?INSERT INTO EMImportListing (" sql += " CustId,Title,Description,JobCity,JobState,JobPostalCode,JobCountry,URL,Requirements, " sql += " IsDraft,IsFeatured,IsApproved," sql += " Email,OrgName,customerAddress1,customerAddress2,customerCity,customerState,customerPostalCode,customerCountry,customerFirstname,customerLastName,customerPhone," sql += " HideContactInfo, HideOrgName, HideName, HidePhone, HideEmail, " sql += " ImportReferenceNumber, ImportCategory,ImportSource,FlgEmlisting " sql += " ) VALUES ( " sql += " @CustId, @Title, @Description, @JobCity, @JobState, @JobPostalCode, @JobCountry, @URL, @Requirements, " sql += " 'Y','N','Y', " sql += " @Email,@OrgName," sql += " @HideContactInfo, @HideOrgName, @HideName, @HidePhone, 'Y', " sql += " @ImportReferenceNumber, @ImportCategory,'Bull','N'" sql += " ) "