Tag: Retrive data
-
sql (day 3)
Retrive: It retrive all data. eg:select * from students; Column name: It shows only contain in particular column by the column name. eg:select name from students; It shows only contain in particular column by the column name(two or more column). eg:select name,course from students; To get only particular name: eg:select * from students where course…