Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable1975 ( StudentName varchar(20), StudentMarks int ); Query OK, 0 rows affected (0.00 sec)
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable1975 values('John',45); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('Chris',67); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('David',59); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1975 values('Bob',NULL); Query OK, 1 row affected (0.00 sec)
Hiển thị tất cả các bản ghi từ bảng bằng câu lệnh select -
mysql> select * from DemoTable1975;
Điều này sẽ tạo ra kết quả sau -
+-------------+--------------+ | StudentName | StudentMarks | +-------------+--------------+ | John | 45 | | Chris | 67 | | David | 59 | | Bob | NULL | +-------------+--------------+ 4 rows in set (0.00 sec)
Đây là truy vấn để đếm tất cả các giá trị cột -
mysql> select count(StudentName)+count(StudentMarks) from DemoTable1975;
Điều này sẽ tạo ra kết quả sau -
+----------------------------------------+ | count(StudentName)+count(StudentMarks) | +----------------------------------------+ | 7 | +----------------------------------------+ 1 row in set (0.00 sec)