3. Statements
:
OpenROAD SQL Statements
:
Create View Statement
Share this page
Create View Statement
The create view statement defines a virtual table.
This statement has the following syntax:
create view
view_name
[
(
column_name
{
,
column_name
}
)
]
as
select_stmt
[
with check option
]
;