Mysql Knowledge Points Summary

Source: Internet
Author: User

1. Create a database Mysqladmin

The following is a simple example of creating a database named YIIBAI_TUTORIALS1. D:\software\mysql-5.6. -winx64\bin> mysqladmin-u root-p create yiibaienter Password:< enter > or D:\software\ MySQL-5.6. -winx64\bin> mysql-u root-p Enter password:mysql>create database Yiibai;

Use PHP script to create Database mysql_query () bool mysql_query(SQL, Connection );

PHP$dbhost= ' localhost:3036 ';$dbuser= ' Root ';$dbpass= ' ';$conn=mysql_connect($dbhost,$dbuser,$dbpass);if(!$conn ){   die(' Could not connect: '.Mysql_error());}Echo' Connected successfully<br/> ';$sql= ' CREATE DATABASE yiibai ';$retval=mysql_query($sql,$conn );if(!$retval ){   die(' Could not create database: '.Mysql_error());}Echo"Database Yiibai created successfully\n";Mysql_close($conn);?>
</body>

2. Build tables CREATE TABLE table_name (column_name column_type);

CREATE TABLE emp (    int,    ename varchar (),    int ,    job varchar ());

2.

Mysql Knowledge Points Summary

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.