집 >데이터 베이스 >MySQL 튜토리얼 >mysql에서 일반적으로 사용되는 명령은 무엇입니까?
일반적인 mysql 명령은 다음과 같습니다. 1. "데이터베이스 이름 만들기"; 2. "데이터베이스 이름 사용"; 4. "테이블 표시";
권장: "mysql 비디오 튜토리얼"
MySQL 데이터베이스 일반 명령
1. MySQL 일반 명령
create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 表的详细描述 select 中加上distinct去除重复字段 mysqladmin drop databasename 删除数据库前,有提示。 显示当前mysql版本和当前日期 select version(),current_date;
2.
3. grant어디서나 서버에 연결할 수 있지만 이를 수행하려면 비밀번호를 사용해야 하는 전체 수퍼유저를 만듭니다.shell>mysql -u root -p mysql> update user set password=password(”xueok654123″) where user=’root’; mysql> flush privileges //刷新数据库 mysql>use dbname; 打开数据库: mysql>show databases; 显示所有数据库 mysql>show tables; 显示数据库mysql中所有的表:先use mysql;然后 mysql>describe user; 显示表mysql数据库中user表的列信息);새 사용자 추가
mysql> grant all privileges on *.* to user@localhost identified by ’something’ withRemove grant:
格式:grant select on 数据库.* to 用户名@登录主机 identified by “密码” GRANT ALL PRIVILEGES ON *.* TO monty@localhost IDENTIFIED BY ’something’ WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO monty@”%” IDENTIFIED BY ’something’ WITH GRANT OPTION;특정 클라이언트 it363에서 사용자 정의를 만듭니다. com 로그인하면 특정 데이터베이스에 액세스할 수 있습니다. fangchandb
mysql> revoke all privileges on *.* from root@”%”; mysql> delete from user where user=”root” and host=”%”; mysql> flush privileges;테이블 이름 변경:
mysql >grant select, insert, update, delete, create,drop on fangchandb.* to custom@ it363.com identified by ‘ passwd’4, mysqldumpBackup Database
mysql > alter table t1 rename t2;Restore Database
shell> mysqldump -h host -u root -p dbname >dbname_backup.sql테이블 생성 명령만 언로드하려는 경우 명령은 다음과 같습니다. :
shell> mysqladmin -h myhost -u root -p create dbname shell> mysqldump -h host -u root -p dbname < dbname_backup.sql테이블 생성 명령 없이 데이터 삽입을 위한 sql 명령만 언로드하려는 경우 명령은 다음과 같습니다.
shell> mysqladmin -u root -p -d databasename > a.sql그럼 sql 명령이 아닌 데이터만 원하면 어떻게 해야 할까요?
shell> mysqladmin -u root -p -t databasename > a.sql그 중 일반 텍스트 파일은 데이터를 언로드할 디렉터리를 나타내는 -T 매개변수를 지정해야만 언로드할 수 있습니다. ./는 mysqldump와 동일한 디렉터리인 현재 디렉터리를 나타냅니다. 드라이버 테이블을 지정하지 않으면 전체 데이터베이스 데이터가 언로드됩니다. 각 테이블은 테이블 생성 실행을 포함하여 두 개의 파일을 생성합니다. 하나는 .sql 파일입니다. 다른 하나는 데이터만 포함하고 SQL 명령은 포함하지 않는 .txt 파일입니다. 5. 쿼리를 파일에 저장하고 키보드 입력을 기다리는 대신 파일에서 쿼리를 읽도록 mysql에 지시할 수 있습니다. 이를 수행하려면 쉘 유형 리디렉션 유틸리티를 사용할 수 있습니다. 예를 들어 my_file.sql 파일에 쿼리가 저장되어 있다면 다음과 같이 쿼리를 실행할 수 있습니다. 예를 들어 테이블 생성문을 sql.txt에 미리 작성하고 싶다면
mysqldump -T./ phptest driver
위 내용은 mysql에서 일반적으로 사용되는 명령은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!