Нужна помощь в нормализации стола до 3NF? - PullRequest
0 голосов
/ 31 октября 2019

Я хочу нормализовать таблицу. До сих пор я сделал это:

это мой 3Nf правильно?

Order(orderNo,orderDate,customerId)

Customer(customerId,customerName,customerCurrentAddress,customerPermanentAddress)

Product(productId,productName,Qty,categoryId)

Category(categoryId,categoryName)

Sub-Category(subCatId,subCatName,categoryId)

Данная таблица:

*******************************************************************************************************************************************************************
| orderNo | orderDate | customerId | customerName | currentAdd | permanentAdd | productId | productName | qty | categoryId | CategoryName | subCatId | subCatName |
*******************************************************************************************************************************************************************
...