Questions tagged «database-schema»

对数据库结构的描述-包括构成数据库的表,列,约束,视图等的结构...通常在文本中定义,通常是RDBMS中的SQL,该模式描述了数据库的完整蓝图,定义有关数据库的所有内容,但数据本身除外。





7
MySQL中架构/数据库之间的区别
MySQL中的模式和数据库之间有区别吗?在SQL Server中,数据库是相对于架构的更高级别的容器。 我读的Create Schema和Create Database做的基本上是在MySQL同样的事情,我相信这线索,架构和数据库是同一对象的不同的词。



10
如何在Docker容器中使用架构初始化MySQL数据库?
我正在尝试创建一个带有MySQL数据库的容器并将架构添加到这些数据库。 我当前的Dockerfile是: FROM mysql MAINTAINER (me) <email> # Copy the database schema to the /data directory COPY files/epcis_schema.sql /data/epcis_schema.sql # Change the working directory WORKDIR data CMD mysql -u $MYSQL_USER -p $MYSQL_PASSWORD $MYSQL_DATABASE < epcis_schema.sql 为了创建容器,我遵循Docker提供的文档并执行以下命令: docker run --name ${CONTAINER_NAME} -e MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD} -e MYSQL_USER=${DB_USER} -e MYSQL_PASSWORD=${DB_USER_PASSWORD} -e MYSQL_DATABASE=${DB_NAME} -d mvpgomes/epcisdb …


10
如何解决错误:通过创建架构,“找不到属性/元素的架构信息”
我有一个用C#用VS2010编写的Windows窗体应用程序,并在app.config文件中得到以下错误: Message 4 Could not find schema information for the attribute 'name' Message 8 Could not find schema information for the attribute 'name' Message 12 Could not find schema information for the attribute 'name' Message 5 Could not find schema information for the attribute 'serializeAs' Message 15 Could not find …

4
如何为每种产品具有许多参数的多种产品设计产品表
我在表格设计方面没有太多经验。我的目标是创建一个或多个满足以下要求的产品表: 支持多种产品(电视,电话,PC等)。每种产品都有一组不同的参数,例如: 手机将具有颜色,尺寸,重量,操作系统... PC将具有CPU,HDD,RAM ... 参数集必须是动态的。您可以添加或编辑所需的任何参数。 没有每种产品的单独表,如何满足这些要求?

3
模式构建器laravel迁移在两列中是唯一的
如何在两列上设置唯一约束? class MyModel extends Migration { public function up() { Schema::create('storage_trackers', function(Blueprint $table) { $table->increments('id'); $table->string('mytext'); $table->unsignedInteger('user_id'); $table->engine = 'InnoDB'; $table->unique('mytext', 'user_id'); }); } } MyMode::create(array('mytext' => 'test', 'user_id' => 1); // this fails?? MyMode::create(array('mytext' => 'test', 'user_id' => 2);

7
如何在MySQL中存储数组?
我在MySQL中有两个表。表人具有以下列: id | name | fruits 该fruits列可以包含null或字符串数​​组,例如('apple','orange','banana')或('strawberry')等。第二个表是Table Fruit,具有以下三列: ____________________________ fruit_name | color | price ____________________________ apple | red | 2 ____________________________ orange | orange | 3 ____________________________ ...,... 那么,我应该如何设计fruits第一个表中的列,以便它可以容纳从fruit_name第二个表中的列获取值的字符串数组?由于MySQL中没有数组数据类型,该怎么办?



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.