Changes
Page history
Update Example queries for our application
authored
Sep 23, 2020
by
Hedda Sofie Ulve
Show whitespace changes
Inline
Side-by-side
Example-queries-for-our-application.md
View page @
d316d00a
...
...
@@ -19,7 +19,7 @@ select title from titles limit 20;
select
emp_no
from
titles
limit
20
;
```
```
sql
select
emp_no
,
title
s
from
titles
limit
20
;
select
emp_no
,
title
from
titles
limit
20
;
```
Explain analyze:
...
...
...
...