What is normalization and types of normalization?
Answer Posted / danish mahmood
Normalization is a systematic way of ensuring that a
database structure is suitable for general purpose querying
and free of certain undesirable characteristics—insertion,
update, and deletion anomalies that could lead to a loss of
data integrity.
| Is This Answer Correct ? | 41 Yes | 14 No |
Post New Answer View All Answers
How do you add a column to a table?
what is the command used to fetch first 5 characters of the string? : Sql dba
what is view? : Sql dba
How does postgresql compare to mysql?
What is cross join sql?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
how to create a new table by selecting rows from another table in mysql? : Sql dba
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
What is an implicit commit?
Does mysql_real_escape_string prevent sql injection?
how to include character strings in sql statements? : Sql dba
What is sqlservr exe?
what is the command line end user interface - mysql? : Sql dba
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
How does pl sql work?