database-design tag

13 questions


1 answers
312 views
0
Using RDBs and Key-value DBs

How do I use RDB and key-value DB differently?Personally, I understand the difference between whether or not you can create an index later, but is this correct?


1 answers
279 views
0
Is there a way to automatically generate table definitions on a mac?

Until now, when creating table definitions, after modifying, adding, and deleting tables in the database, Windows automatically generated them using the A5 SQL feature (↓)DB client:A5 SQL automatic ta...

1 years ago

2 answers
390 views
0
Understanding Table Normalization

I've been designing DB tables so far, and I always get lost.It's about whether the name should be on the transaction table.Generally, it is good to code names and manage them centrally in a master tab...


4 answers
130 views
0
Want to know best design practices when you want to filter a table with multiple conditions in RDB

I'd like to know the best design practice when you want RDB to filter a table under multiple conditions (including AND/OR).For example, table name:sample_tableSchema: - id integer - name varchar - co...

1 years ago

2 answers
82 views
0
DESIGN OF TABLE OF MEMBERED SITE

I'd like to create a membership-based learning support site with cakephp 2.7, but I don't know exactly what kind of table I should design.First of all, since it is a membership system, the username an...

1 years ago

2 answers
60 views
0
Normalization of product tables such as EC sites

We create applications that mimic EC sites.I would like to normalize the product table.Currently, the table configuration is as follows.1 id2. Product name3. List Price4. Number of stocks5 Date of arr...


1 answers
67 views
0
How should we design if there is more than one element in a single column?

I'm worried about how to design the RDB column.How should I design it if there is a possibility of multiple elements in a single column?For example, you want to design a table containing watari, wani,...


1 answers
76 views
0
Understanding System Integration

The same system currently runs as multiple separate sites.How it works is the apache+tomcat+postgres web service.if you decide to consolidate these multiple sites into one siteIf you want to lump mult...


1 answers
119 views
0
Why don't you impose NOT NULL constraints on flag items?

DB designs that do not impose NOT NULL constraints on flag items such as enable and delete flags are common.According to the specification, Please treat 0 and NULL in the same sense, but is there any ...


2 answers
112 views
0
Draw a line between what DB should have as a master and what source code should define

I'm worried about drawing a line between what DB should have as a master and what source code should define as a Const list.Personally, if the user does not edit from the master management screen, I t...

- 1 - »

© 2024 OneMinuteCode. All rights reserved.