How to execute .sql files to create new tables(如何执行 .sql 文件以创建新表)
问题描述
phpMyAdmin 配置存储 (phpMyAdmin/doc/html/setup.html#linked-tables) 说
phpMyAdmin configuration storage (phpMyAdmin/doc/html/setup.html#linked-tables) says
[..] 然后通过导入 examples/create_tables.sql 来创建新表
[..] and then create new tables by importing examples/create_tables.sql
这不是明确的.我在哪里导入"这个文件?它是我必须执行的 SQL 脚本吗?如何?这些表将在哪里创建?
This is not explicit. Where do I 'import' this file? Is it an SQL script I have to execute? how? Where will these tables be created?
推荐答案
打开命令行;cd 到包含 mysql 可执行文件的目录;输入 mysql 并登录到您的服务器,然后选择一个数据库.
Open the command line;cd to the directory that contains the mysql executable; type mysql and log into the your server, then choose a database.
现在你可以输入source/path/to/my/sql/file.sql
这篇关于如何执行 .sql 文件以创建新表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何执行 .sql 文件以创建新表
基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
