Đầu tiên chúng ta hãy tạo một bảng -
mysql> create table DemoTable ( StudentId int ); Query OK, 0 rows affected (0.62 sec)
Chèn một số bản ghi vào bảng bằng lệnh chèn -
mysql> insert into DemoTable values(343898456); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable values(222333444); Query OK, 1 row affected (0.22 sec)
Sau đây là truy vấn để hiển thị tất cả các bản ghi từ bảng bằng cách sử dụng câu lệnh select -
mysql> select *from DemoTable;
Điều này sẽ tạo ra kết quả sau -
+-----------+ | StudentId | +-----------+ | 343898456 | | 222333444 | +-----------+ 2 rows in set (0.00 sec)
Đây là truy vấn để tạo chế độ xem -
mysql> create view myView_DemoTable as select format(StudentId, 0) AS `StudentId` from DemoTable; Query OK, 0 rows affected (0.18 sec) Let us check the records of view table: mysql> select *from myView_DemoTable;
Điều này sẽ tạo ra kết quả sau -
+-------------+ | StudentId | +-------------+ | 343,898,456 | | 222,333,444 | +-------------+ 2 rows in set (0.04 sec)