
| Key: |
CORE-1386
|
| Type: |
Improvement
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Trivial
|
| Assignee: |
Dmitry Yemanov
|
| Reporter: |
lacak
|
| Votes: |
0
|
| Watchers: |
1
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Make "compute by" column definition SQL:2003 compliant
Now:
<column name> <type or domain> COMPUTED [BY] ( <expr> )
SQL:2003
<column name> <type or domain> GENERATED ALWAYS AS ( <expr> )
|
|
Description
|
Make "compute by" column definition SQL:2003 compliant
Now:
<column name> <type or domain> COMPUTED [BY] ( <expr> )
SQL:2003
<column name> <type or domain> GENERATED ALWAYS AS ( <expr> )
|
Show » |
|
so the syntax are :
<column name> <type> COMPUTED [BY] ( <expr> )
or
<column name> <type> GENERATED ALWAYS AS ( <expr> )