代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/100285/6272270
hlp create_view.hlp
.pgaw:Help.f.t insert end "CREATE VIEW" {bold} " will define a view of a table. This view is not physically materialized. Specifically, a query rewrite retrieve rule is automatically generated to supp
www.eeworm.com/read/100285/6272276
hlp create_trigger.hlp
.pgaw:Help.f.t insert end "CREATE TRIGGER" {bold} " will enter a new trigger into the current data base. The trigger will be associated with the relation relname and will execute the specified functio
www.eeworm.com/read/100285/6272279
hlp create_aggregate.hlp
.pgaw:Help.f.t insert end "CREATE AGGREGATE" {bold} " allows a user or programmer to extend Postgres functionality by defining new aggregate functions. Some aggregate functions for base types such as
www.eeworm.com/read/100285/6272288
hlp create_database.hlp
.pgaw:Help.f.t insert end "CREATE DATABASE" {bold} " creates a new Postgres database. The creator becomes the administrator of the new database.
" {} "Synopsis" {bold} "
" {} "
CREATE DATABASE name
www.eeworm.com/read/100285/6272302
hlp create_operator.hlp
.pgaw:Help.f.t insert end "CREATE OPERATOR" {bold} " defines a new operator, name. The user who defines an operator becomes its owner.
The operator name is a sequence of up to thirty two (32) charac
www.eeworm.com/read/100285/6272307
hlp create_language.hlp
.pgaw:Help.f.t insert end "CREATE LANGUAGE" {bold} ". Using CREATE LANGUAGE, a Postgres user can register a new language with Postgres. Subsequently, functions and trigger procedures can be defined in
www.eeworm.com/read/100285/6272309
hlp create_sequence.hlp
.pgaw:Help.f.t insert end \
"CREATE SEQUENCE" {bold} " will enter a new sequence number generator into the current data base. This involves creating and initialising a new single-row table with the na
www.eeworm.com/read/100285/6272322
hlp create_index.hlp
.pgaw:Help.f.t insert end "CREATE INDEX" {bold} " constructs an index index_name. on the specified table.
Tip: Indexes are primarily used to enhance database performance. But inappropriate us
www.eeworm.com/read/100285/6272324
hlp create_user.hlp
.pgaw:Help.f.t insert end "CREATE USER" {bold} " will add a new user to an instance of Postgres.
The new user will be given a usesysid of: 'SELECT MAX(usesysid) + 1 FROM pg_shadow'. This means that
www.eeworm.com/read/456224/6278788
m create_ellipse.m
function ret = create_ellipse(X1,X2)
ret = 0.25*X1.*X1+X2.*X2-1;