Latest developer linksBookmark and Share
 
HomeThis WeekTop MonthTop AlltimeSearchRegisterFAQ
  
 
Submit Your Link
Please login to submit your Link
 
MySQL
Selecting Data with SQL IN
SQL IN allows us to select values which match any one of a list of values. The use of SQL IN is as follows: SELECT column_list FROM table_name WHERE column IN ("list_item1","list_item2".)The column in WHERE clause

Posted : Sep/24/2009   By: nikhil    Category: MySQL    Total Views :96   Vote Up: 0   Vote Down: 0

Querying Data from MySQL
In order to retrieve data from MySQL database server you use SELECT statement. Here is the simple form of it: The SELECT statement has many option clauses which you can use these or not. If you use, the order has to be

Posted : Sep/24/2009    By: nikhil    Category: MySQL   Total Views :80   Vote Up: 0   Vote Down: 0

Creating and Removing Index
» MySQL Tutorial » Creating and Removing Index Creating and Removing Index Creating Indexes Database indexes help to speed the retrieval of data from MySQL database server faster. When retrieving the data, MySQL first c

Posted : Sep/24/2009   By: nikhil    Category: MySQL    Total Views :77   Vote Up: 0   Vote Down: 0

Working with Tables - Part II
Altering Table Structures Beside creating table, MySQL allows you to alter existing table structures with a lot of options. Here are the ALTER TABLE statement:

Posted : Sep/24/2009    By: nikhil    Category: MySQL   Total Views :80   Vote Up: 0   Vote Down: 0

Working with Tables - Part I
Creating Tables To create table we use the CREATE TABLE statement. The usual form of this statement is: CREATE TABLE [IF NOT EXISTS] table_name( column_list ) type=table_type

Posted : Sep/24/2009   By: nikhil    Category: MySQL    Total Views :78   Vote Up: 0   Vote Down: 0

Getting Information About Databases and Tables
You have previously seen SHOW DATABASES, which lists the databases managed by the server. To find out which database is currently selected, use the DATABASE() function: The name of the column in the output produced by thi

Posted : Sep/24/2009    By: nikhil    Category: MySQL   Total Views :68   Vote Up: 0   Vote Down: 0

Creating and Using a Database
Once you know how to enter commands, you are ready to access a database. Suppose that you have several pets in your home (your menagerie) and you would like to keep track of various types of information about them. You

Posted : Sep/24/2009   By: nikhil    Category: MySQL    Total Views :93   Vote Up: 0   Vote Down: 0

Connecting to and Disconnecting from the Server
To connect to the server, you will usually need to provide a MySQL user name when you invoke mysql and, most likely, a password. If the server runs on a machine other than the one where you log in, you will also need to s

Posted : Sep/24/2009    By: nikhil    Category: MySQL   Total Views :96   Vote Up: 0   Vote Down: 0

« Previous12Next »
 
 
Categories:
.NET
Java
PHP
C/C++/VC++
HTML/XML
SAP
MainFrames
Data Warehousing
Testing
MySQL
SQL Server
Oracle
Javascript/VB Script
Others
Login
 
 
 
 
 Forgot password
 Contact Us   Terms Of use   Share your knowledge