SQLQuery to delete Account

Results 1 to 14 of 14
  1. #1
    Member azatain is offline
    MemberRank
    May 2009 Join Date
    68Posts

    sad SQLQuery to delete Account

    I need a SQLQuery to delete accounts fully
    Delete existing characters, delete clans, etc ...


  2. #2
    Pee Aitch Pee Dave is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    722Posts

    Re: SQLQuery to delete Account

    Code:
    TRUNCATE TABLE Account
    TRUNCATE TABLE AccountItem
    TRUNCATE TABLE Character
    TRUNCATE TABLE CharacterItem
    TRUNCATE TABLE Clan
    TRUNCATE TABLE ClanMember
    TRUNCATE TABLE Friend
    TRUNCATE TABLE Login
    Execute in Microsoft SQL Server.
    An error will pop-up when you try to execute it but just press continue, it will work.

    If anyone noticed I forgot a table, post it here. :)

  3. #3
    Valued Member Cock is offline
    MemberRank
    May 2011 Join Date
    Vaginas.Location
    115Posts

    Re: SQLQuery to delete Account

    Quote Originally Posted by SuperWaffle View Post
    Code:
    TRUNCATE TABLE Account
    TRUNCATE TABLE AccountItem
    TRUNCATE TABLE Character
    TRUNCATE TABLE CharacterItem
    TRUNCATE TABLE Clan
    TRUNCATE TABLE ClanMember
    TRUNCATE TABLE Friend
    TRUNCATE TABLE Login
    Execute in Microsoft SQL Server.
    An error will pop-up when you try to execute it but just press continue, it will work.

    If anyone noticed I forgot a table, post it here. :)
    Well, that will delete all of the accounts, he said only 1 acc D:

  4. #4
    Pee Aitch Pee Dave is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    722Posts

    Re: SQLQuery to delete Account

    According to his post he said he wanted to "delete existing accounts, characters, clans fully"

  5. #5
    Valued Member Cock is offline
    MemberRank
    May 2011 Join Date
    Vaginas.Location
    115Posts

    Re: SQLQuery to delete Account

    But his title says SQLQuery to delete account, lol confusing at least you gave it some effort ;3.

  6. #6
    Member azatain is offline
    MemberRank
    May 2009 Join Date
    68Posts

    Re: SQLQuery to delete Account

    i need to delete 1 account :s

  7. #7
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,302Posts

    Re: SQLQuery to delete Account

    Quote Originally Posted by azatain View Post
    i need to delete 1 account :s
    Do it manually?

  8. #8
    Member azatain is offline
    MemberRank
    May 2009 Join Date
    68Posts

    Re: SQLQuery to delete Account

    Quote Originally Posted by Military View Post
    Do it manually?
    Yes....

  9. #9
    Just Me iceman4154 is offline
    MemberRank
    Oct 2007 Join Date
    Columbus, OhioLocation
    217Posts

    Re: SQLQuery to delete Account

    Dude.
    DELETE FROM Account WHERE User ID='[put user id here]'
    DELETE FROM Login WHERE User ID='[put user id here]'

    Example:
    DELETE FROM Account WHERE User ID='iceman4154'

  10. #10
    Member azatain is offline
    MemberRank
    May 2009 Join Date
    68Posts

    Re: SQLQuery to delete Account

    Quote Originally Posted by iceman4154 View Post
    Dude.
    DELETE FROM Account WHERE User ID='[put user id here]'
    DELETE FROM Login WHERE User ID='[put user id here]'

    Example:
    DELETE FROM Account WHERE User ID='iceman4154'
    Yes, it deletes the accounts, but I need to delete completely and all its dependencies, Characters, Clans, Friends of the characters, etc...

  11. #11
    Valued Member Cock is offline
    MemberRank
    May 2011 Join Date
    Vaginas.Location
    115Posts

    Re: SQLQuery to delete Account

    Code:
    DELETE FROM Account WHERE AID='[AID]'
    DELETE FROM Login WHERE AID='[AID]'
    DELETE FROM Character WHERE AID='[AID]'
    DELETE FROM Clan WHERE NAME='[Name]'

  12. #12
    Sultan of Yolo Demantor is offline
    MemberRank
    May 2008 Join Date
    GermanyLocation
    1,266Posts

    Re: SQLQuery to delete Account

    Quote Originally Posted by Cock View Post
    Code:
    DELETE FROM Account WHERE AID='[AID]'
    DELETE FROM Login WHERE AID='[AID]'
    DELETE FROM Character WHERE AID='[AID]'
    DELETE FROM Clan WHERE NAME='[Name]'
    The Order should be:
    deleting all account/character Logs.
    deleting all clan members of his clan(in case hes leader).
    deleting his clan.
    deleting all his characters.
    deleting account from Login and account table.

  13. #13
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: SQLQuery to delete Account

    Guys what he means is emptying the whole table not deleting it.

  14. #14
    Sultan of Yolo Demantor is offline
    MemberRank
    May 2008 Join Date
    GermanyLocation
    1,266Posts

    Re: SQLQuery to delete Account

    DELETE FROM [Table Name]



Advertisement