

InterviewSolution
Saved Bookmarks
1. |
Name some commonly used data types in DBMS |
Answer» For text we use char and varchar . Numeric value- int,to view table-select* from table name, to insert values in table - insert into table name values(coloum1 datatype,........),to add column- alter table table name add new colum name datatype;,to view specific coloum - select colum name from table name. | |