+ Reply to Thread
Results 1 to 3 of 3

Thread: wanted help in mysql, some tutorial?

  1. #1
    danvictor2041 is offline x10Hosting Member danvictor2041 is an unknown quantity at this point
    Join Date
    Sep 2010
    Posts
    7

    Wink wanted help in mysql, some tutorial?

    wanted help in mysql, some tutorial?

  2. #2
    Dead-i's Avatar
    Dead-i is offline Community Advocate Dead-i has a spectacular aura about
    Join Date
    Aug 2011
    Location
    United Kingdom
    Posts
    1,445

    Re: wanted help in mysql, some tutorial?

    The official website is helpful for learning MySQL:
    http://www.mysql.com/

    Here is a little beginners tutorial for MySQL if you want to know the main commands.
    MySQL has many databases which you can create within cPanel, and inside those databases there are tables.
    In these table there are different columns, and you can insert records/rows by running the INSERT command.

    To view all the records in a table named 'mytable', run:
    Code:
    SELECT * FROM mytable;
    You can also use the WHERE statement to search for a specific record. In this example, it shows all rows where (in the fullname column) the cell is 'deadi':
    Code:
    SELECT * FROM mytable WHERE fullname='deadi';
    The WHERE statement also works with different operators: > and < and !=. This example uses < which means 'is less than'.
    Code:
    SELECT * FROM mytable WHERE age < '30';
    The INSERT command allows you to insert a new record into the table. This command inserts a row where the 1st column is '2', the 2nd column is 'deadi' and the 3rd column is '25'.
    Code:
    INSERT INTO mytable VALUES(2, 'deadi', '25');
    You don't need to wrap numbers in 's.

    The DELETE command deletes a cell; the syntax is similar to SELECT:
    Code:
    DELETE FROM mytable WHERE fullname='deadi';
    Hopefully that's enough to get you started

  3. #3
    elle_hon0831 is offline x10Hosting Member elle_hon0831 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    8

    Re: wanted help in mysql, some tutorial?

    http://www.developphp.com look this site, many tutorials u can learned many things in that..... php, mysql, javascript or html.

+ Reply to Thread

Similar Threads

  1. Tutorial: PHP/MySQL Membership System
    By Jesse in forum Tutorials
    Replies: 31
    Last Post: 03-20-2012, 03:48 PM
  2. [TUTORIAL]Subir archivos a Base de datos MySQL
    By breedx in forum Tutoriales
    Replies: 5
    Last Post: 03-15-2009, 01:18 PM
  3. MySQL Tutorial
    By Bobswat in forum Tutorials
    Replies: 7
    Last Post: 02-01-2008, 10:14 AM
  4. MySQL Problems on Stoli? Follow this tutorial!
    By mr kennedy in forum Free Hosting
    Replies: 111
    Last Post: 01-11-2008, 01:47 PM
  5. mysql tutorial
    By dosworld in forum Free Hosting
    Replies: 3
    Last Post: 05-31-2005, 04:19 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers