Data delete from mysql table?
#1

Hello!

It would be a question,that it is possible to delete data in mysql table.

If so, then someone would take me a pawn code?

Data: Table name: mk Database: hsystemac I will add my pass and username
Reply
#2

MySQL - DELETE

Код:
DELETE * FROM `accounts` WHERE `ID` = '1'
will delete every row from the table named "accounts" where the ID is 1

Код:
DELETE `Money` FROM `accounts` WHERE `ID` = '1'
will delete the row "money" from the table named "accounts" where the ID is 1

simple as that
Reply
#3

http://www.w3schools.com/sql/sql_delete.asp
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)