About Me

My photo
I worked as freelancer on freelance.com for many years, Then opened my Company. I did software coding with my company. But also did pottery -- I know well business management. Software coding is coming next to it as a plus. It helps but organising is as much important as coding. I have many years of experience in business management of Industrial Construction works. I am quite known as company for CAD drafting and 3d for architectural design. I had quite a lot experience at USA and at Turkey. I am less known, in my pottery love.

Wednesday, May 1, 2024

DBMS Keys

 Primary Key

source : guru99.com/dbms-keys.html

  • 1 column or no column uniquely
  • identify every row
  • cannot accept null values
  • only one primary key
  • creates clustered index
  • other naming:
    • composite primary key
      • it may or may not be part of the foreign key
      • uniquely identify each record
    • compound primary key
      • 1 or many columns are primary key
      • any part of compound key can be a foreign key

Unique key

  • uniquely determines a row which isn`t primary key
  • can accept one null value
  • more than one unique key is possible
  • Non clustered index (TR: kümelenmemiş)

Foreign Key

  • Column that creates a relatıonshıp between 2 tables

neo4j-mathematics

 create the nodes: CREATE   ( n : sil  { name : "k1" ,  val :   1250 }),( m : sil2  { name : "k2" ,  val : 1250 }),   ( ...