search
HomeDatabaseMysql Tutorial【Mysql】shell运行mysql的sql语句_MySQL
【Mysql】shell运行mysql的sql语句_MySQLJun 01, 2016 pm 01:29 PM
javamysqlsql statementConnect to the database

bitsCN.com

【Mysql】shell运行mysql的sql语句

 

    shell本身是一种脚本语言,所以不能像java一样通过api去连接数据库。shell还是要借助mysql本身的一些运行脚本才能去执行sql语句。说到这很明白了,首先必须在机器上安装mysql。

   可以通过mysql/bin/mysql这个脚本来运行sql语句,格式是mysql -hhost -Pport -uusername -ppassword database -e"sql",下面是shell的代码

[plain] #!/bin/sh  bin=/usr/local/mysql/bin  username=root  password=    mysql=$bin/mysql  hostname=localhost  port=3306  database=loongdisk  table=userio    if [ "$password" == "" ]; then      inputpwd=""  else      inputpwd=-p$password  fi  #year  head=$database.${table}_month  echo $head  sql="alter table $head add column login int(10) unsigned not null default 0"  $mysql -h$hostname -P$port -u$username $inputpwd $database -e"$sql"  

 


bitsCN.com
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Linux性能调优~Linux性能调优~Feb 12, 2024 pm 03:30 PM

Linux操作系统是一个开源产品,它也是一个开源软件的实践和应用平台。在这个平台下,有无数的开源软件支撑,如apache、tomcat、mysql、php等。开源软件的最大理念是自由和开放。因此,作为一个开源平台,linux的目标是通过这些开源软件的支持,以最低廉的成本,达到应用最优的性能。谈到性能问题,主要实现的是linux操作系统和应用程序的最佳结合。一、性能问题综述系统的性能是指操作系统完成任务的有效性、稳定性和响应速度。Linux系统管理员可能经常会遇到系统不稳定、响应速度慢等问题,例如

如何解决 Golang 中的错误“ORA-00911:无效字符”?如何解决 Golang 中的错误“ORA-00911:无效字符”?Feb 08, 2024 pm 09:39 PM

我在调用以下函数时遇到错误“ORA-00911:无效字符”。如果我使用带有硬编码值的SQL查询(截至目前,它已在下面的代码片段中注释掉),那么我可以在邮递员中以JSON响应获取数据库记录,没有任何问题。所以,看起来我的论点做错了。仅供参考,我正在使用“github.com/sijms/go-ora/v2”包连接到oracledb。另外,“DashboardRecordsRequest”结构位于数据模型包中,但我已将其粘贴到下面的代码片段中以供参考。请注意,当我进行POC时,我们将使用存

Java连接数据库的SQLException异常该如何处理?Java连接数据库的SQLException异常该如何处理?Jun 24, 2023 pm 09:23 PM

在Java程序中,连接数据库是很常见的操作。虽然连接数据库能够使用现成的类库和工具,但是在程序开发时仍然有可能出现各种异常情况,其中SQLException异常就是其中一种情况。SQLException是Java提供的一个异常类,它描述了在访问数据库时发生的错误,如查询语句错误、表不存在、连接断开等。对于Java程序员来说,特别是那些使用JDBC(Java数

如何使用PHP读取数据库中的前几条记录?如何使用PHP读取数据库中的前几条记录?Mar 22, 2024 am 10:03 AM

如何使用PHP读取数据库中的前几条记录?在开发Web应用程序时,我们经常需要从数据库中读取数据并展示给用户。有时候,我们只需要显示数据库中的前几条记录,而不是全部内容。本文将教您如何使用PHP读取数据库中的前几条记录,并提供具体的代码示例。首先,假设您已经连接到数据库并选择了要操作的表。以下为一个简单的数据库连接示例:

深入探索Go语言开源项目的无限潜力:五个项目概要值得留意深入探索Go语言开源项目的无限潜力:五个项目概要值得留意Jan 30, 2024 am 10:48 AM

近年来,Go语言在软件开发领域的应用越来越广泛,吸引了众多开发者的关注和参与。Go语言以其高效的性能、简洁的语法和强大的并发特性,成为了许多开发者的首选语言。在Go语言的生态系统中,开源项目扮演着非常重要的角色,为开发者提供了各种优秀的工具和库。本文将概述五个值得关注的Go语言开源项目,以展示Go语言在软件开发领域的无限潜力。GinGin是一个基于Go语言的

备份数据库的sql语句有哪些备份数据库的sql语句有哪些Sep 18, 2023 am 11:26 AM

备份数据库的sql语句有mysqldump命令、pg_dump命令、expdp命令、BACKUP DATABASE命令、mongodump命令和redis-cli命令。

Gorm 不同的列顺序和测试失败Gorm 不同的列顺序和测试失败Feb 10, 2024 pm 03:20 PM

在我的代码中,我有以下模型:typeIDuint64typeBaseModelstruct{IDID`gorm:"column:id;primaryKey;autoIncrement"json:"id"`UpdateDatetime.Time`gorm:"column:update_date;default:CURRENT_TIMESTAMPONUPDATECURRENT_TIMESTAMP"json:"update_da

学习MySQL必看!详细讲解SQL语句基础知识学习MySQL必看!详细讲解SQL语句基础知识Jun 15, 2023 pm 09:00 PM

MySQL是一个开源的关系型数据库管理系统,被广泛地应用于Web应用程序的开发和数据存储。学习MySQL的SQL语言对于数据管理员和开发者来说是非常必要的。SQL语言是MySQL中的核心部分,因此在学习MySQL之前,你需要对SQL语言有充分的了解,本文旨在为你详细讲解SQL语句基础知识,让你一步步了解SQL语句。SQL是结构化查询语言的简称,用于在关系型数

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment