SQL check for duplicate?
Hi,

i know how to check for duplicate when i use normal MySQL.dll with C# but this is different, how do i check if a steamID already in the DB, i know select query but i dont get it on the SQL documentation, can someone help me please?

Thanks
Hi!
Set steamID as UNIQUE in your table, so you won't get duplicates.
Then try something from here: https://stackoverflow.com/questions/4253960/sql-how-to-properly-check-if-a-record-exists
In response to serezhadelaet ():
Hi!
Set steamID as UNIQUE in your table, so you won't get duplicates.
Then try something f...
Thank you