Hello & Welcome to our community. Is this your first visit? Register
Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Likes Likes:  0
Results 1 to 8 of 8

Thread: [SQL]Tutorial.

  1. #1
    Contributor
    Cocain's Avatar
    Join Date
    Mar 2010
    Posts
    208
    Post Thanks / Like
    Rep Power
    16
    Reputation
    92

    [SQL]Tutorial.


    Register to remove this ad
    ////////////SQL Introduction.////////////

    Although SQL is an ANSI standard, there are many different versions of the SQL language.
    However, to be compliant with the ANSI standard, they all support at least the major commands (such as SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner.

    Note: Most of the SQL database programs also have their own proprietary extensions in addition to the SQL standard. However, the above posted commands, are quite nice, and come in handy, when working with a WorldOfWarcraft database, for any emulator.<

    Another note : Standing the other way of Lua, SQL isn't case sensitive, you should keep that in mind.

    ////////////The Start Of The Guide////////////
    If you know this SQL commands, you're quite far.

    Code:
       *  SELECT - extracts data from a database
        * UPDATE - You can update your data with this commands in your database.
       * DELETE - You can delete unwished collumns with this command from your database.
        * INSERT INTO - You can insert new data in your database, with this command.
    & then standing at the side of this
    Code:
        *  CREATE DATABASE - creates a new database
        * CREATE TABLE - Name says it itself.
        * ALTER TABLE - Alter, means modify, so you can simply modify a table with this command.
        * DROP TABLE - Delete a table with this command.
    So, we'll start with the acctual guide now.
    Your first SQL statement.


    The following SQL statement will select all the records in the "Items" table:

    Code:
    SELECT * FROM Items
    Now, that you selected the records, from the Items table, you can also select a certain collumn out of it. We'll still be working in the 'Items' database.

    SQL SELECT Syntax
    Code:
    SELECT Name (This is the collumn name.)
    FROM Items  (Table name.)
    and
    Code:
    SELECT * FROM Items (Table name.)
    Now, you want to select the content of the columns named Names, Itemid from the table 'Items.' This can be done this way :

    Code:
    SELECT Names,Itemid(Collumn Names) FROM Items(Table Name)
    Next, selecting all collumns, from the table 'Items.' You can do this on a quite simple way. The * in SQL stands for selecting all the collumns.
    So :


    Code:
    Select * From Items.
    The next part. Using Distincts. Hence I'm not so good at them yet, I took them from a small guide, posted on a private forum.

    In a table, some of the columns may contain duplicate values. This is not a problem, however, sometimes you will want to list only the different (distinct) values in a table.

    The DISTINCT keyword can be used to return only distinct (different) values.

    Code:
    SELECT DISTINCT column_name(s)
    FROM table_name
    Now we want to select only the distinct values from the column named "City" from the table above.

    We use the following SELECT statement:

    Code:
    SELECT DISTINCT City FROM Persons
    End of the copied part.
    Now, we'll move on to the next part of my personal guide.

    Using the 'Where' command. When you select somthing, with the 'Where' command, you select collumns, with specified vallues.

    Example.
    Code:
    SELECT Names (Collumn name.
    FROM Items (Table name.)
    WHERE (Your specification here.)
    We'll use the WHERE command now, to select all collumns in the table 'Items' where it contains a 'Lol' in the name.

    Code:
    SELECT * FROM Items (Selects all collumns from the table items.)
    WHERE Name='Lol' (Speaks for itself.)
    When you're using 1,2,3,.. numbers, so, you arn't needed to use ' at the begin, and to close it at the end. When you're using text values, you're supposed to open, and close it.

    Code:
    This is correct:
    
    SELECT * FROM Items WHERE Name='Lol'
    
    This is wrong:
    
    SELECT * FROM Persons WHERE Name=Lol

    The AND operator displays a record if both the first condition and the second condition is true.

    The OR operator displays a record if either the first condition or the second condition is true.


    So :
    Code:
    Select * FROM Items 
    Where Name = 'Lol' (Name, both are collumns.)
    AND Id ='4500' (The Itemid.)
    So no need to apply a second 'Where.' when you're using an AND command.

    Next, the use of the 'OR.' command :


    Code:
    Select * FROM Items
    Where Name ='Lol'
    OR Name='Lol1'.
    Q:
    A:Yes you can.
    On this way :


    Code:
    SELECT * FROM ITEMS 
    WHERE Name='Lol'
    AND (Itemid='4500' OR Itemid='4501')
    Congrats, you now can 'look up' collumns, and tables, select them, from the database.

    ////////////INSERTING////////////

    The INSERT INTO statement is used to insert a new row in a table.

    Code:
    INSERT INTO Items
    VALUES (value1, value2, value3,...)
    The value insert of 1 - 2 - 3 has to be the structure of your database.



    for example.

    Code:
    INSERT INTO Items
    VALUES (4500(Id),'Loller(Name)', '25484(Displayid)')
    This will add the data into all collumns, now we're going to add data into specific collumns :

    Code:
    INSERT INTO Persons (Id, Name)
    VALUES (4500, 'Loller')
    In this case, your inserted item doesn't have a displayid.

    Now we're going to update the collumns.

    Code:
    UPDATE Items
    SET Names=Lollerlol, Itemid=4500
    WHERE Names=Lol AND Itemid=45000

    Deleting collumns. <3


    Code:
    DELETE FROM Items
    WHERE Itemid=4500
    Can it be more easyer?

    Code:
    DELETE FROM Items
    WHERE Name='Lol' AND Name='Loller'
    This is it so far. Hope you enjoyed it.


    › See More: [SQL]Tutorial.



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #2
    Beginner

    Join Date
    Feb 2010
    Posts
    24
    Post Thanks / Like
    Rep Power
    15
    Reputation
    3
    Thanks for the guide. I needed to grasp some SQL basics

    Just one question please: Are indentations allowed in SQL queries?

    Thanks
    Last edited by Synapse; 01-04-10 at 11:19 AM.

  4. #3
    Contributor
    Cocain's Avatar
    Join Date
    Mar 2010
    Posts
    208
    Post Thanks / Like
    Rep Power
    16
    Reputation
    92
    Quote Originally Posted by Synapse View Post
    Thanks for the guide. I needed to grasp some SQL basics

    Just one question please: Are indentations allowed in SQL queries?

    Thanks

    I don't see how you're even able to use them in SQL queries. But I wouldn't advise trying it. :P

  5. #4
    Beginner

    Join Date
    Feb 2010
    Posts
    24
    Post Thanks / Like
    Rep Power
    15
    Reputation
    3
    Ok, thanks for the tip.

  6. #5
    Contributor
    Pedregon's Avatar
    Join Date
    Jul 2008
    Posts
    89
    Post Thanks / Like
    Rep Power
    17
    Reputation
    81
    Very useful. Stickied.

  7. #6
    Scout

    Join Date
    Apr 2010
    Posts
    29
    Post Thanks / Like
    Rep Power
    15
    Reputation
    13
    Very nice, i will use this for sure. Im sick of doing the long ways of finding scripts that already have it set up for me :P

  8. #7
    Beginner

    Join Date
    Jun 2010
    Posts
    2
    Post Thanks / Like
    Rep Power
    14
    Reputation
    1
    This will come in quite handy. Thanks for the info.

  9. #8
    Beginner

    Join Date
    Jun 2010
    Posts
    22
    Post Thanks / Like
    Rep Power
    14
    Reputation
    1

    Register to remove this ad
    thanks,

 

 

Visitors found this page by searching for:

wow sql tutorial

sql tutorialWoW Sql tutorialstutoriel sql wowtable sql wowguia sql wow tutorial wow sqlworld of warcract sql tutorialmost complete wow world.sqlsql wow script tutoarcemu sql scripting tutorialsql tables for world of warcraftwow sql navodtables wow sqlwow sql lessonssql lessons wowwow sql script helpwow sql мануалsql for stat values item arcemuarcemu how to make sql queries tutorialwow private sql tutorialtable.collumnname in select statementlua-sql-tutorialtutorial msql wowcocain paradoxworld of warcraft sql tutorialswow sql guide
SEO Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 11:33 AM.
Powered by vBulletin® Copyright ©2000-2024, Jelsoft Enterprises Ltd.
See More links by ForumSetup.net. Feedback Buttons provided by Advanced Post Thanks / Like (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
vBulletin Licensed to: MMOPro.org