Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
54c85746
Commit
54c85746
authored
Aug 09, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes to DocTOC Chapter 6.
parent
b92a57e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
21 deletions
+29
-21
Docs/manual.texi
Docs/manual.texi
+29
-21
No files found.
Docs/manual.texi
View file @
54c85746
...
@@ -26845,12 +26845,10 @@ Things that are not yet supported:
...
@@ -26845,12 +26845,10 @@ Things that are not yet supported:
@menu
@menu
* Language Structure::
* Language Structure::
* Variables:: User variables
* Column types:: Column types
* Column types:: Column types
* Functions:: Functions
* Functions:: Functions
* Data Manipulation::
* Data Manipulation::
* Data Definition::
* Data Definition::
* DROP DATABASE:: @code{DROP DATABASE} syntax
* Basic User Commands::
* Basic User Commands::
* Transactional Commands::
* Transactional Commands::
* Fulltext Search::
* Fulltext Search::
...
@@ -26864,13 +26862,16 @@ included in @strong{MySQL}. In order to use this chapter effectively, you
...
@@ -26864,13 +26862,16 @@ included in @strong{MySQL}. In order to use this chapter effectively, you
may find it useful to refer to the various indexes.
may find it useful to refer to the various indexes.
@node Language Structure,
Variabl
es, Reference, Reference
@node Language Structure,
Column typ
es, Reference, Reference
@section Language Structure
@section Language Structure
@menu
@menu
* Literals::
* Literals::
* Legal names::
* Legal names::
* Name case sensitivity::
* Name case sensitivity::
* Variables::
* Comments::
* Reserved words::
@end menu
@end menu
...
@@ -27224,7 +27225,7 @@ database. This syntax is accepted for ODBC compatibility, because some ODBC
...
@@ -27224,7 +27225,7 @@ database. This syntax is accepted for ODBC compatibility, because some ODBC
programs prefix table names with a @samp{.} character.
programs prefix table names with a @samp{.} character.
@node Name case sensitivity,
, Legal names, Language Structure
@node Name case sensitivity,
Variables
, Legal names, Language Structure
@subsection Case Sensitivity in Names
@subsection Case Sensitivity in Names
@cindex names, case-sensitivity
@cindex names, case-sensitivity
...
@@ -27275,8 +27276,8 @@ change this option, you need to first convert your old table names to
...
@@ -27275,8 +27276,8 @@ change this option, you need to first convert your old table names to
lower case before starting @code{mysqld}.
lower case before starting @code{mysqld}.
@node Variables, Co
lumn types, Language Structure, Referenc
e
@node Variables, Co
mments, Name case sensitivity, Language Structur
e
@section User Variables
@s
ubs
ection User Variables
@cindex variables, user
@cindex variables, user
@cindex user variables
@cindex user variables
...
@@ -27340,7 +27341,7 @@ row, but the value of @code{id} for the previous accepted row.
...
@@ -27340,7 +27341,7 @@ row, but the value of @code{id} for the previous accepted row.
* Reserved words::
* Reserved words::
@end menu
@end menu
@node Comments, Reserved words, Variables,
Variables
@node Comments, Reserved words, Variables,
Language Structure
@subsection Comment Syntax
@subsection Comment Syntax
@findex Comment syntax
@findex Comment syntax
...
@@ -27392,7 +27393,7 @@ input from that file with @code{mysql < some-file}.
...
@@ -27392,7 +27393,7 @@ input from that file with @code{mysql < some-file}.
@xref{Missing comments}.
@xref{Missing comments}.
@node Reserved words, , Comments,
Variables
@node Reserved words, , Comments,
Language Structure
@subsection Is MySQL Picky About Reserved Words?
@subsection Is MySQL Picky About Reserved Words?
@cindex keywords
@cindex keywords
...
@@ -27506,7 +27507,7 @@ used them.
...
@@ -27506,7 +27507,7 @@ used them.
@end itemize
@end itemize
@node Column types, Functions,
Variables
, Reference
@node Column types, Functions,
Language Structure
, Reference
@section Column Types
@section Column Types
@cindex columns, types
@cindex columns, types
...
@@ -33034,15 +33035,22 @@ For more information about the efficiency of @code{INSERT} versus
...
@@ -33034,15 +33035,22 @@ For more information about the efficiency of @code{INSERT} versus
@xref{Insert speed}.
@xref{Insert speed}.
@node Data Definition,
DROP DATABASE
, Data Manipulation, Reference
@node Data Definition,
Basic User Commands
, Data Manipulation, Reference
@section Data Definition: @code{CREATE}, @code{DROP}, @code{ALTER}
@section Data Definition: @code{CREATE}, @code{DROP}, @code{ALTER}
@menu
@menu
* CREATE DATABASE::
* CREATE DATABASE::
* DROP DATABASE::
* CREATE TABLE::
* ALTER TABLE::
* RENAME TABLE::
* DROP TABLE::
* CREATE INDEX::
* DROP INDEX::
@end menu
@end menu
@node CREATE DATABASE,
, Data Definition, Data Definition
@node CREATE DATABASE,
DROP DATABASE
, Data Definition, Data Definition
@subsection @code{CREATE DATABASE} Syntax
@subsection @code{CREATE DATABASE} Syntax
@findex CREATE DATABASE
@findex CREATE DATABASE
...
@@ -33065,8 +33073,8 @@ You can also create databases with @code{mysqladmin}.
...
@@ -33065,8 +33073,8 @@ You can also create databases with @code{mysqladmin}.
@xref{Client-Side Scripts}.
@xref{Client-Side Scripts}.
@node DROP DATABASE,
Basic User Commands, Data Definition, Reference
@node DROP DATABASE,
CREATE TABLE, CREATE DATABASE, Data Definition
@section @code{DROP DATABASE} Syntax
@s
ubs
ection @code{DROP DATABASE} Syntax
@findex DROP DATABASE
@findex DROP DATABASE
...
@@ -33113,7 +33121,7 @@ You can also drop databases with @code{mysqladmin}. @xref{Client-Side Scripts}.
...
@@ -33113,7 +33121,7 @@ You can also drop databases with @code{mysqladmin}. @xref{Client-Side Scripts}.
* DROP INDEX::
* DROP INDEX::
@end menu
@end menu
@node CREATE TABLE, ALTER TABLE, DROP DATABASE, D
ROP DATABASE
@node CREATE TABLE, ALTER TABLE, DROP DATABASE, D
ata Definition
@subsection @code{CREATE TABLE} Syntax
@subsection @code{CREATE TABLE} Syntax
@findex CREATE TABLE
@findex CREATE TABLE
...
@@ -33625,7 +33633,7 @@ Certain other column type changes may occur if you compress a table
...
@@ -33625,7 +33633,7 @@ Certain other column type changes may occur if you compress a table
using @code{myisampack}. @xref{Compressed format}.
using @code{myisampack}. @xref{Compressed format}.
@node ALTER TABLE, RENAME TABLE, CREATE TABLE, D
ROP DATABASE
@node ALTER TABLE, RENAME TABLE, CREATE TABLE, D
ata Definition
@subsection @code{ALTER TABLE} Syntax
@subsection @code{ALTER TABLE} Syntax
@findex ALTER TABLE
@findex ALTER TABLE
...
@@ -33889,7 +33897,7 @@ column, the numbers will start from 1 again.
...
@@ -33889,7 +33897,7 @@ column, the numbers will start from 1 again.
@xref{ALTER TABLE problems}.
@xref{ALTER TABLE problems}.
@node RENAME TABLE, DROP TABLE, ALTER TABLE, D
ROP DATABASE
@node RENAME TABLE, DROP TABLE, ALTER TABLE, D
ata Definition
@subsection @code{RENAME TABLE} Syntax
@subsection @code{RENAME TABLE} Syntax
@findex RENAME TABLE
@findex RENAME TABLE
...
@@ -33933,7 +33941,7 @@ will do a reverse rename for all renamed tables to get everything back
...
@@ -33933,7 +33941,7 @@ will do a reverse rename for all renamed tables to get everything back
to the original state.
to the original state.
@node DROP TABLE, CREATE INDEX, RENAME TABLE, D
ROP DATABASE
@node DROP TABLE, CREATE INDEX, RENAME TABLE, D
ata Definition
@subsection @code{DROP TABLE} Syntax
@subsection @code{DROP TABLE} Syntax
@findex DROP TABLE
@findex DROP TABLE
...
@@ -33956,7 +33964,7 @@ For the moment they don't do anything.
...
@@ -33956,7 +33964,7 @@ For the moment they don't do anything.
automatically commit any active transactions.
automatically commit any active transactions.
@node CREATE INDEX, DROP INDEX, DROP TABLE, D
ROP DATABASE
@node CREATE INDEX, DROP INDEX, DROP TABLE, D
ata Definition
@subsection @code{CREATE INDEX} Syntax
@subsection @code{CREATE INDEX} Syntax
@findex CREATE INDEX
@findex CREATE INDEX
...
@@ -34013,7 +34021,7 @@ are available in @strong{MySQL} Version 3.23.23 and later.
...
@@ -34013,7 +34021,7 @@ are available in @strong{MySQL} Version 3.23.23 and later.
@ref{Fulltext Search}.
@ref{Fulltext Search}.
@node DROP INDEX, , CREATE INDEX, D
ROP DATABASE
@node DROP INDEX, , CREATE INDEX, D
ata Definition
@subsection @code{DROP INDEX} Syntax
@subsection @code{DROP INDEX} Syntax
@findex DROP INDEX
@findex DROP INDEX
...
@@ -34029,7 +34037,7 @@ prior to Version 3.22. In Version 3.22 or later, @code{DROP INDEX} is mapped to
...
@@ -34029,7 +34037,7 @@ prior to Version 3.22. In Version 3.22 or later, @code{DROP INDEX} is mapped to
@xref{ALTER TABLE, , @code{ALTER TABLE}}.
@xref{ALTER TABLE, , @code{ALTER TABLE}}.
@node Basic User Commands, Transactional Commands, D
ROP DATABASE
, Reference
@node Basic User Commands, Transactional Commands, D
ata Definition
, Reference
@section Basic MySQL User Utility Commands
@section Basic MySQL User Utility Commands
@menu
@menu
...
@@ -34105,7 +34113,7 @@ The @code{SHOW} statement provides similar information.
...
@@ -34105,7 +34113,7 @@ The @code{SHOW} statement provides similar information.
@node Transactional Commands, Fulltext Search, Basic User Commands, Reference
@node Transactional Commands, Fulltext Search, Basic User Commands, Reference
@section M
Y
SQL Transactional and Locking Commands
@section M
y
SQL Transactional and Locking Commands
@menu
@menu
* COMMIT::
* COMMIT::
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment