Domande taggate «database-schema»

Una descrizione della struttura del database - inclusa la struttura delle tabelle, colonne, vincoli, viste, ecc, ecc ... che compongono il database Normalmente definito nel testo, generalmente SQL in un RDBMS, lo schema descrive il progetto completo per il database, definendo tutto ciò che riguarda il database tranne i dati stessi.





7
Differenza tra schema / database in MySQL
C'è una differenza tra uno schema e un database in MySQL? In SQL Server, un database è un contenitore di livello superiore in relazione a uno schema. L'ho letto Create Schemae Create Databasefaccio essenzialmente la stessa cosa in MySQL, il che mi porta a credere che schemi e database siano …





10
Come correggere l'errore: "Impossibile trovare le informazioni sullo schema per l'attributo / elemento" creando lo schema
Ho un'applicazione Windows Form scritta in VS2010 con C # e ottengo i seguenti errori nel app.configfile: 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' …


3
schema builder laravel migrazioni uniche su due colonne
Come posso impostare un vincolo univoco su due colonne? 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
Come memorizzare gli array in MySQL?
Ho due tabelle in MySQL. La tabella Persona ha le seguenti colonne: id | name | fruits La fruitscolonna può contenere null o un array di stringhe come ('apple', 'orange', 'banana') o ('strawberry'), ecc. La seconda tabella è Table Fruit e ha le seguenti tre colonne: ____________________________ fruit_name | color …


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.