About 575,000 results
Open links in new tab
  1. Difference Between Schema / Database in MySQL - Stack Overflow

    400 Is there a difference between a schema and a database in MySQL? In SQL Server, a database is a higher level container in relation to a schema. I read that Create Schema and Create Database do …

  2. How do I show the schema of a table in a MySQL database?

    Sep 30, 2009 · From the MySQL console, what command displays the schema of any given table?

  3. MySQL: Cloning a MySQL database on the same MySql instance

    Using MySQL Utilities The MySQL Utilities contain the nice tool mysqldbcopy which by default copies a DB including all related objects (“tables, views, triggers, events, procedures, functions, and database …

  4. mysql - Differences between Database and Schema using different ...

    Nov 17, 2015 · MySQL aliases behind the scenes, schema with database, such that create schema, and create database are analogs. It can be said, that MySQL therefore, has implemented cross-table …

  5. How can I get the size of a MySQL database? - Stack Overflow

    To select from a single database, add this between the FROM and GROUP line: where table_schema='DATABASE_NAME' - replacing DATABASE_NAME with your database.

  6. How do I rename a MySQL database (change schema name)?

    1175 How do I quickly rename a MySQL database (change its schema name)? Usually I just dump a database and re-import it with a new name. This is not an option for very big databases. Apparently …

  7. sql - MySQL 'create schema' and 'create database' - Is there any ...

    143 Taking a peek into the information_schema database and peeking at the metadata for one of my pet projects, I'm having a hard time understanding what (if any) differences there are between the create …

  8. mysql - Qual a diferença de SCHEMA e DATABASE? - Stack Overflow …

    Jul 18, 2018 · For example, the INFORMATION_SCHEMA and performance_schema databases use “schema” in their names to emphasize the close relationships between the tables and columns they …

  9. How to get database structure in MySQL via query?

    May 22, 2009 · Is it possible to somehow get structure of MySQL database, or just some table with simple query? Or is there another way, how can I do it?

  10. How can I get the sizes of the tables of a MySQL database?

    Here we can find the database size from the information_schema.tables default database in MySQL server where we can find metadata of MySql Server databases. Query for see tables size: