码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 学习-表建立及查看的示例和字符函数的使用

时间:2016-05-28 12:44:30      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 1 SELECT LEFT(SOMETHIN,5);
 2 SELECT right(KISS GOODBYE,4);
 3 SELECT LOWER(BEAUTIFUL),lcase(WELL);
 4 select upper(black),ucase(Black);
 5 
 6 use sakila;
 7 create table Book
 8 (
 9 bookid int not null,
10 bookname varchar(255) not null,
11 authors varchar(255) not null,
12 info varchar(255) null,
13 comment varchar(255) null,
14 year_publication year,
15 index (year_publication)
16 );
17 show create table book;

 

Mysql 学习-表建立及查看的示例和字符函数的使用

标签:

原文地址:http://www.cnblogs.com/RedCoffeeGod/p/5537109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!