Meister Posted December 10, 2015 Group: Members Topic Count: 280 Topics Per Day: 0.06 Content Count: 841 Reputation: 17 Joined: 04/16/12 Last Seen: March 4, 2024 Share Posted December 10, 2015 (edited) E.G. I want to erase an entry in sc_data table. account_id char_id type tick val1 val2 val3 val4 2000035 150052 32 196130 10 12 0 0 2000029 150063 30 237002 10 10 0 0 I want to erase the data for account id 2000035 so the proper format will be? DELETE FROM `sc_data` WHERE 1 what could be the snippet of the code? Edited December 10, 2015 by Meister Quote Link to comment Share on other sites More sharing options...
0 15peaces Posted December 10, 2015 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 143 Reputation: 8 Joined: 02/11/13 Last Seen: 6 hours ago Share Posted December 10, 2015 DELETE FROM `sc_data` WHERE `account_id` = '2000035'; Quote Link to comment Share on other sites More sharing options...
Question
Meister
E.G.
I want to erase an entry in sc_data table.
I want to erase the data for account id 2000035
so the proper format will be?
what could be the snippet of the code?
Edited by MeisterLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.