Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is indexing in mysql and how do we create indexing in
mysql

Answers were Sorted based on User's Feedback



What is indexing in mysql and how do we create indexing in mysql..

Answer / ramesh n

Indexes are created on a per column basis. If you have a
table with the columns: name, age, birthday and employeeID
and want to create an index to speed up how long it takes to
find employeeID values in your queries, then you would need
to create an index for employeeID. When you create this
index, MySQL will build a lookup index where employeeID
specific queries can be run quickly. However, the name, age
and birthday queries would not be any faster.

Indexes are something extra that you can enable on your
MySQL tables to increase performance,cbut they do have some
downsides. When you create a new index MySQL builds a
separate block of information that needs to be updated every
time there are changes made to the table. This means that if
you are constantly updating, inserting and removing entries
in your table this could have a negative impact on performance.

syntax
CREATE TABLE <table name> (
<filed name> <field type>....
)

Is This Answer Correct ?    2 Yes 1 No

What is indexing in mysql and how do we create indexing in mysql..

Answer / ramse

Ramesh,
Can you please explain how many type of indexing and how
this really works.

one more thing please explain syntax of index creation.

Is This Answer Correct ?    2 Yes 1 No

What is indexing in mysql and how do we create indexing in mysql..

Answer / shubhra

two type of indexing

Is This Answer Correct ?    1 Yes 0 No

What is indexing in mysql and how do we create indexing in mysql..

Answer / ramya

Two type of indexing
Spatial indexes (created using SPATIAL INDEX):
1.Available only for MyISAM tables. Specifying a
SPATIAL INDEX for other storage engines results in an error.
2.Indexed columns must be NOT NULL.
3.In MySQL 5.0, the full width of each column is
indexed by default, but column prefix lengths are allowed.
However, as of MySQL 5.0.40, the length is not displayed in
SHOW CREATE TABLE output. mysqldump uses that statement. As
of that version, if a table with SPATIAL indexes containing
prefixed columns is dumped and reloaded, the index is
created with no prefixes. (The full column width of each
column is indexed.)

Nonspatial indexes (created with INDEX, UNIQUE, or PRIMARY KEY):
1.Allowed for any storage engine that supports spatial
columns except ARCHIVE.
2.Columns can be NULL unless the index is a primary key.
3.For each spatial column in a non-SPATIAL index except
POINT columns, a column prefix length must be specified.
(This is the same requirement as for indexed BLOB columns.)
The prefix length is given in bytes.
4.The index type for a non-SPATIAL index depends on the
storage engine. Currently, B-tree is used.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

Is php deprecated?

0 Answers  


What is the role of the .htaccess file in php?

0 Answers  


Suppose your zend engine supports the mode <? ?> Then how can you configure your php zend engine to support <?php ?> Mode ?

0 Answers  


Which operator is used to concatenate two strings in PHP?

0 Answers  


Is php closing tag necessary?

0 Answers  


What is php how it works?

0 Answers  


How check field is empty or not in php?

0 Answers  


What is the purpose of basename() function in PHP?

0 Answers  


What is member function?

0 Answers  


How is a constant defined in a PHP script?

0 Answers  


What is PHP's configuration file called?

0 Answers  


What is alias in php?

0 Answers  


Categories