Update table.md

This commit is contained in:
yakov-olkhovskiy 2022-02-08 21:09:52 -05:00 committed by GitHub
parent b90125bed0
commit 465dee928c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,7 @@ In addition, this column is not substituted when using an asterisk in a SELECT q
`EPHEMERAL expr`
Ephemeral column. Such a column isn't stored in the table and cannot be SELECTed, but can be referenced in the defaults of CREATE statement.
Currently SELECT/INSERT invariant is not preserved for this type, i.e. set of fields obtained using `SELECT *` cannot be inserted back into the table using INSERT without specifying the list of columns.
INSERT without list of columns will skip such column, so SELECT/INSERT invariant is preserved - the dump obtained using `SELECT *` can be inserted back into the table using INSERT without specifying the list of columns.
### ALIAS {#alias}