English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

how many table possible to create in one database?

2006-11-28 19:52:33 · 3 answers · asked by Anonymous in Computers & Internet Programming & Design

3 answers

There's no (practical) limit. Most likely, you'll run out of space before it becomes an issue.

2006-11-28 19:55:12 · answer #1 · answered by A_Patriot 2 · 0 1

If you use a foreign key with a unique constraint, you can have only 1 entry with a null value.. for example CREATE TABLE Category ( ID INT NULL PRIMARY KEY ) CREATE TABLE SubCategory ( CategoryID INT NOT NULL FOREIGN KEY REFERENCES (Category.ID) ) You can insert records on SubCategory with a null value for CategoryID, but 1 entry on Category can have the ID null

2016-05-23 01:19:19 · answer #2 · answered by Anonymous · 0 0

I believe there is an infinite limit, the only restriction being hard drive storage you have available.

2006-11-28 19:54:30 · answer #3 · answered by mr_cabbageman 4 · 0 0

fedest.com, questions and answers