Các lệnh cơ bản của MySQL P2.
Written on 03/03/2010 – 10:09 | by hanh_bk |Show all records containing the name “Bob” AND the phone number ’3444444′. mysql> SELECT * FROM [table name] WHERE name = “Bob” AND phone_number = ’3444444′; Show all records not containing the name “Bob” AND the phone number ’3444444′ order by the phone_number field. mysql> SELECT * FROM [table name] WHERE name != “Bob” AND [...]

