FAQ/Questions/Using-Stored-Procedures-In-Izenda-6.md
... ...
@@ -32,13 +32,9 @@ GO
32 32
33 33
<a name="SampleOutput"></a>Here we have a SP named "GetContact" that accepts one input parameter, the name of a company. It returns two columns; the customer's name, and a phone number. There is also a condition that the CompanyName must be similar to the input variable @companyName. If we will execute this SP in MSSQL 2005 using the Customers table from Northwind, we will get the following result:
34 34
35
-|ContactName|Phone|
36
-|-----------|-----|
37
-|Andre Fonseca|(11)555-9482|
38
-|Jonas Bergulfsen|07-98 92 35|
39
-|Helvetius Nagy|(206)555-8257|
35
+![MSSQL stored procedure results](/FAQ/Questions/Using-Stored-Procedures-In-Izenda-6/mssql_stored_procedure.png)
40 36
41
-*Results of sample SP execution in MSSQL 2005.*
37
+***Figure 1.** Results of sample SP execution in MSSQL 2005.*
42 38
43 39
###Using SPs in your application
44 40