---
title: "How to Create A Stored Procedure for Display All Records ?"  
description: "How to Create A Stored Procedure for Display All Records ?"  
author: "Anonymous User"  
published: 2018-07-31  
updated: 2018-07-31  
canonical: https://www.mindstick.com/forum/34640/how-to-create-a-stored-procedure-for-display-all-records  
category: "mssql server"  
tags: ["mssql server"]  
reading_time: 1 minute  

---

# How to Create A Stored Procedure for Display All Records ?

\

## Replies

### Reply by Anonymous User

Display all record.

```
CREATE Proc ContactViewAll
AS
Begin
 Select * from Contact
END
```

\


---

Original Source: https://www.mindstick.com/forum/34640/how-to-create-a-stored-procedure-for-display-all-records

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
