Write a query to create a view to show only 'acc_id' and 'status' columns and then show that view. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Write a query to create a view to show only 'acc_id' and 'status' columns and then show that view.

error in data table

5th Nov 2022, 4:27 PM
MITHUN RAAJ S
MITHUN RAAJ S - avatar
2 Réponses
+ 2
create view <ViewName> as select acc_id, status from <tableName> Well it seems this question is from SQL so I've answered it accordingly
5th Nov 2022, 4:58 PM
I am offline
I am offline - avatar
+ 1
create view list as select acc_id, status from users; select * from list
24th Apr 2023, 5:30 PM
Reya garg