我想從我的表中刪除與列標題具有相同標題的行。例如如何刪除SQL中的行而不刪除整個表
Number
| Name
| Nat
| Pos
| Height
| Weight
| Birth Place
| Previous Club
Number
| Name
| Nat
| Pos
| Height
| Weight
| Birth Place
| Previous Club
1
| joe blogg
| eng
| forward
| 1.95
| 85
| london
| london fc
這個查詢 ( 「DELETE FROM表table1
WHERE Number
= Number
」);
刪除整個表,但我只是想刪除上面的行其中number = 1
FWIW,'WHERE總數= Number'意味着刪除所有的行,其中在「編號」列中的值是在「數」等於值列...這將是所有行的數字不是NULL。 – 2015-04-06 22:05:58