Update DBMS/SQL/Week6/writeup.md
This commit is contained in:
parent
3f57583a7b
commit
0e80223947
1 changed files with 12 additions and 0 deletions
|
@ -130,4 +130,16 @@ SQL> SELECT GetTotalAccidentsByRegno('ABCD0001') AS Total_Accidents
|
|||
TOTAL_ACCIDENTS
|
||||
---------------
|
||||
1
|
||||
```
|
||||
```SQL
|
||||
SQL> SELECT c.REGNO, GetTotalAccidentsByRegno(c.REGNO) AS Total_Accidents
|
||||
2 FROM car c;
|
||||
|
||||
REGNO TOTAL_ACCIDENTS
|
||||
-------------------- ---------------
|
||||
ABCD0001 1
|
||||
ABCD4001 0
|
||||
DSDS0001 1
|
||||
EFGH2001 0
|
||||
HFSP5601 2
|
||||
```
|
Loading…
Add table
Reference in a new issue