“Apa tampilan dalam DBMS” Kode Jawaban

Apa tampilan dalam DBMS

--CREATING VIEW.
CREATE VIEW view_name AS  
SELECT column1, column2, column3....
FROM table_name  
WHERE condition;  
Furqan Khan

Apa tampilan dalam DBMS

Views :
Views in SQL are kind of virtual tables. 
A view also has rows and columns as they are in a real table in the database. 
We can create a view by selecting fields from one or more tables,
present in the database. 
A View can either have all the rows of a table or specific rows,
based on certain condition.
Shrey A

Jawaban yang mirip dengan “Apa tampilan dalam DBMS”

Pertanyaan yang mirip dengan “Apa tampilan dalam DBMS”

Lebih banyak jawaban terkait untuk “Apa tampilan dalam DBMS” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya