• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

MySQL căn bản cho newbie

Admin

Well-Known Member
Staff member
Administrator
Xem danh sách các cơ sở dữ liệu/bảng đã có

Dùng lệnh:

mysql> show databases;
mysql> show tables;

Chạy file SQL có sẵn


Để chạy file SQL có sẵn (.sql), dùng một trong 2 lệnh sau:

mysql> SOURCE salary.sql
mysql> \. salary.sql
Ví dụ:

salary.sql
CREATE TABLE salary
(
employeeID INT UNSIGNED AUTO_INCREMENT,
name VARCHAR(100),
salary INT,
PRIMARY KEY(prodID)
);

mysql> \. salary.sql

Tạo/Xóa cơ sở dữ liệu


Để tạo và dùng cơ sở dữ liệu, dùng lệnh sau:

mysql> CREATE DATABASE salary;
mysql> USE salary;

Để xóa, dùng lênh:


mysql> DROP DATABASE salary;

Tạo bảng


Cú pháp tổng quát:

CREATE TABLE tableName
(
fieldName1 dataType(size) [NULL | NOT NULL]
fieldName2 dataType(size) [NULL | NOT NULL]
);

Trong đó, dataType(size) có thể là:
char(size), varchar(size), tinytext, text, mediumtext, longtext, enum
int, tinyint, mediumint, bigint, float, double
date, timestamp(size), datetime, time, year(size)


Ví dụ:


CREATE TABLE salary
(
employeeID INT UNSIGNED AUTO_INCREMENT,
name VARCHAR(100),
salary INT,
PRIMARY KEY(prodID)
);

Xem cấu trúc của cơ sở dữ liệu/bảng


Dùng một trong các lệnh sau:

mysql> DESCRIBE salary;
mysql> DESC salary;
mysql> SHOW FIELDS FROM salary;
mysql> SHOW TABLES;

Thay đổi một bảng có trước


Đổi tên bảng:

mysql> ALTER TABLE salary RENAME site;

Thêm một trường vào trong bảng:


mysql> ALTER TABLE salary ADD COLUMN modified TIMESTAMP;
mysql> ALTER TABLE salary ADD COLUMN modified TIMESTAMP FIRST;
mysql> ALTER TABLE salary ADD COLUMN modified TIMESTAMP AFTER some_field;

Xóa trường ra khỏi bảng:


mysql> ALTER TABLE salary DROP COLUMN modified;
mysql> ALTER TABLE salary DROP INDEX keyIndex;

Thay đổi thuộc tính của trường:


mysql> ALTER TABLE salary CHANGE name aName VARCHAR(255) NOT NULL;
mysql> ALTER TABLE salary CHANGE name name VARCHAR(200) NOT NULL;

Xóa bảng:


mysql> DROP TABLE salary;

Các lệnh SQL cơ bản


Lệnh select

KeywordDescription
SELECTRetrieves fields from one or more tables.
FROMTables containing the fields.
WHERECriteria to restrict the records returned.
GROUP BYDetermines how the records should be grouped.
HAVINGUsed with GROUP BY to specify the criteria for the grouped records.
ORDER BYCriteria for ordering the records.
LIMITLimit the number of records returned
Lệnh insert

KeywordDescription
INSERTInserts data into a table
INTOSpecifies the name of the table to insert the data
VALUESThe data for the fields in the ta
Lệnh update

KeywordDescription
UPDATEUpdates data in one or more tables.
SETSpecifies the field names to be updates. If the fields belong to more that one table, the table name should be specified before the field name. (eg. search.Page).
WHERECriteria to restrict the records updated.
Lệnh delete

KeywordDescription
DELETEDeletes the records in one or more tables.
FROMTables containing the records.
WHERECriteria to restrict the records deleted
 

Facebook Comments

Similar threads
Thread starter Title Forum Replies Date
Admin Hướng dẫn cài IIS, PHP, MySQL trên Windows Server 2012 R2 chi tiết 2020 VPS & Dedicated Server 0
blog4me Crack KSWEB: server + PHP + MySQL v3.961 [Pro] Crack, hack, mod, ghép game, ứng dụng 0
Admin How to error MySQL Error : Unknown column '0Array' in 'where clause' Error Number : 1054 Vbb tutorial 0
Admin How to fix MySQL query error [1062]: Duplicate entry '***' for key 'expiry_date' xenforo 2 Xenforo 0
Admin How to fix XF\Db\Exception: MySQL query error [1932]: Table 'xf_phrase_map' doesn't exist Xenforo 0
khanhsak3r Hỏi Sửa lỗi can't create windows service for mysql như thế nào?! Sử dụng, chia sẻ, hỏi đáp 3
Admin Hướng dẫn cài đặt Linux, nginx, MySQL, PHP (LEMP) trên Raspberry Pi chi tiết VPS & Dedicated Server 0
Admin Hướng dẫn cài IIS, PHP, MySQL trên Windows Server 2012 R2 chi tiết VPS & Dedicated Server 14
Admin Hướng dẫn cài đặt Linux, Apache, MySQL, PHP (LAMP) trên Ubuntu 14.04 chi tiết VPS & Dedicated Server 0
Admin Hướng dẫn cài đặt Linux, nginx, MySQL, PHP (LEMP) trên CentOS 7.0 chi tiết VPS & Dedicated Server 1
Admin Hướng dẫn cài đặt Linux, nginx, MySQL, PHP (LEMP) trên Ubuntu 14.04 chi tiết VPS & Dedicated Server 0
Admin Hướng dẫn cài đặt tự động Nginx, PHP-FPM, MySQL và phpMyAdmin trên CentOS đơn giản VPS & Dedicated Server 1
Admin Share code lpanel 2.1 quản lí tập tin và MySQL thuận tiện Mã nguồn wap 0
Smobi Hướng dẫn Mysql explain and indexing strategies PHP 0
O Tuyển Lập Trình PHP & MySQL PHP 0
Admin Tạo webserver cho android hỗ trợ php, mysql và phpmyadmin Android, iOS 4
L Share Những lỗi cơ bản thường gặp với PHP và MySQL PHP 1
Admin Hướng dẫn cài đặt Apache2 với PHP5 và hỗ trợ MySQL trên Ubuntu 11.10 VPS & Dedicated Server 0
Admin Hướng dẫn tạo trang web từ Google App Engine hỗ trợ PHP và MySQL Hosting / Domain 0
Admin Tài liệu tự học html, css, javascript, php&mysql, asp tiếng việt fix link Kiến thức lập trình 0
Admin Share database địa giới hành chính Việt Nam chi tiết tới cấp xã/phường/thị trấn [MySQL, Access, Exce Sách, truyện, tài liệu 0
D Share Sao lưu dữ liệu bằng PHP -Backup MySQL Database Using PHP All Shared Scripts 0
Admin PHP và MySQL + izCMS PHP 0
Admin Hướng dẫn tối ưu hóa xenforo phần 2 - Phân mảnh trong MySQL và cách sửa chữa Xenforo 0
Admin Hướng dẫn tối ưu hóa xenforo phần 1 với database - MySQL Optimization Xenforo 0
Admin Winginx dễ dàng cài đặt Nginx - PHP - MySQL trên windows VPS & Dedicated Server 0
Admin Hướng dẫn cài đặt Cherokee với PHP5 và MySQL VPS & Dedicated Server 0
Admin Ebook hướng dẫn làm forum bằng php và mysql kèm theo source code full PHP 0
Admin Hướng dẫn cài đặt Apache, MySQL, PHP trên CentOS 5.2 VPS & Dedicated Server 0
Admin [Centos] centmin mod cài đặt nginx + php-fpm + mariadb 5.5.32 mysql VPS & Dedicated Server 0
Admin Hướng dẫn cài đặt Apache, PHP, MySQL, và phpMyAdmin trên CentOS VPS & Dedicated Server 0
vancongpham Topic hỏi đáp về php - mysql PHP 16
Admin Hướng dẫn thay đổi giá trị max_allowed_packet của MySQL chi tiết VPS & Dedicated Server 1
Admin Hướng dẫn sửa lỗi Invalid SQL: ALTER TABLE user DROP topxtab; MySQL Error : Can't DROP 'topxtab'; check that c Vbb tutorial 2
Myshare Share FREE WEB HOSTING + PHP, MySQL and NoAds Hosting & Domain Free 0
Myshare Thảo luận Tìm Kiếm Gần Đúng Trong SQL (MySQL) All Shared Scripts 0
Admin Cách export và import cơ sở dữ liệu MySQL VPS & Dedicated Server 0
Admin Lệnh cơ bản trong MySQL PHP 0
Admin Hướng dẫn fix lỗi MySQL Error : Table '***.cms_ permissions' doesn't exist Error Number : 1146 trong forumrunn Vbb tutorial 0
Admin Hướng dẫn fix lỗi MySQL Error : Unknown column 'vbcmspermissions' in 'field list' Error Number : 1054 Vbb tutorial 0
Admin Hướng dẫn cài đặt Nginx với PHP5 và MySQL hỗ trợ trên Fedora 13 VPS & Dedicated Server 0
B mAdserve 2.0 - PHP/MySQL Mobile Ad Server All Shared Scripts 0
Admin Share script đăng nhập mysql admin cho mobile Mã nguồn wap 0
Admin Các lệnh quản lý MYSQL qua SSH VPS & Dedicated Server 0
Admin Tài liệu thiết kế web PHP và MySQL ASP CSS Dreamweaver Ajax Photoshop JSP Sách, truyện, tài liệu 0
Admin Hướng dẫn cài đặt Apache, PHP, MySQL, và phpMyAdmin trên CentOS VPS & Dedicated Server 0
Admin Hướng dẫn cài đặt Apache2 với PHP5 và hỗ trợ MySQL trên Ubuntu 11.10 (LAMP) VPS & Dedicated Server 0
Admin [MySQL] Tạo, xóa CSDL và bảng với CREAT PHP 0
Admin Bit webserver for android (php + mysql + phpmyadmin) Kiến thức lập trình 0
Admin Share mAdserve 2.0 - PHP/MySQL Mobile Ad Server Mã nguồn wap 0

Similar threads

New posts New threads New resources

Back
Top