Skip to content

Commit c93df9b

Browse files
committed
regarding procedure
1 parent 28c0496 commit c93df9b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,16 @@ select stddev(population) from city group by population;
250250
```sql
251251
select group_concat(population) from city group by population;
252252
```
253+
254+
## Procedure
255+
256+
#### Creating procedure
257+
```sql
258+
create procedure display_dbs()
259+
show databases;
260+
```
261+
262+
#### Calling procedure
263+
```sql
264+
call display_dbs();
265+
```

0 commit comments

Comments
 (0)