search
HomeDatabaseMysql TutorialSQL学习笔记二 创建表、插入数据的语句

SQL学习笔记二 创建表、插入数据的语句,需要的朋友可以参考下。

创建一个表T_Employee并插入若干数据
代码如下:
create table T_Employee(FNumber VARCHAR(20),FName VARCHAR(20),FAge int,FSalary NUMERIC(10,2) ,PRIMARY KEY(FNumber));
insert into T_Employee(FNumber,FName,FAge,FSalary) values('DEV001','Tom',25,8300);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('DEV002','Jerry',28,2300.80);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('SALES001','John',23,5000);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('SALES002','Kerry',28,6200);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('SALES003','Stone',22,1200);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('HR001','Jane',23,2200.88);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('HR002','Tina',25,5200.36);
insert into T_Employee(FNumber,FName,FAge,FSalary) values('IT001','Smith',28,3900);
insert into T_Employee(FNumber,FAge,FSalary) values('IT002',27,2800);


大家可以查找下 create与insert命令的使用。
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
Can't create table 'table_name'; table exists - 如何解决MySQL报错:无法创建表,表已存在Can't create table 'table_name'; table exists - 如何解决MySQL报错:无法创建表,表已存在Oct 05, 2023 pm 03:42 PM

Can'tcreatetable'table_name';tableexists-如何解决MySQL报错:无法创建表,表已存在,需要具体代码示例MySQL是最常用的关系型数据库之一,具有广泛的应用。在使用MySQL时,有时会遇到报错信息:"Can'tcreatetable'table_name';tableexists",意思是无法创

MySQL创建文章表实现博客系统的文章功能MySQL创建文章表实现博客系统的文章功能Jul 05, 2023 pm 02:37 PM

MySQL创建文章表实现博客系统的文章功能随着互联网的快速发展,博客已经成为人们分享知识、表达意见和记录生活的重要平台。在博客系统中,文章功能是核心之一。本文将介绍如何使用MySQL数据库创建文章表,实现博客系统中的文章功能,并提供相关代码示例。一、创建文章表在MySQL数据库中,可以使用CREATETABLE语句创建文章表。文章表需要包含一些基本字段,如

使用MySQL创建评论表实现评论功能使用MySQL创建评论表实现评论功能Jul 01, 2023 pm 07:13 PM

使用MySQL创建评论表实现评论功能一、概述在许多网站和应用中,评论功能是必不可少的一部分。为了实现评论功能,我们需要创建一个评论表来储存用户的评论内容。本文将介绍如何使用MySQL数据库来创建评论表,并提供相应的代码示例。二、创建评论表我们可以使用以下的SQL语句创建一个名为comments的评论表:CREATETABLEcomments(id

Can't create table 'table_name' (errno: 150) - 如何解决MySQL报错:无法创建表,错误编号:150Can't create table 'table_name' (errno: 150) - 如何解决MySQL报错:无法创建表,错误编号:150Oct 05, 2023 am 09:09 AM

Can'tcreatetable'table_name'(errno:150)-如何解决MySQL报错:无法创建表,错误编号:150,需要具体代码示例在使用MySQL数据库时,有时会遇到创建表的问题。其中一个常见的问题是无法创建表,错误编号为150。这个错误通常表示在创建表时出现了外键约束错误。本文将介绍如何解决这个问题,并提供具体的代码示例。

如何实现MySQL中插入数据的语句?如何实现MySQL中插入数据的语句?Nov 08, 2023 am 11:48 AM

如何实现MySQL中插入数据的语句?在使用MySQL数据库时,插入数据是一项非常基础且常见的操作。通过插入数据,可以将新的记录添加到数据库表中,为业务操作提供支持。本文将介绍如何使用MySQL中的INSERT语句来实现数据插入操作,并提供具体的代码示例。MySQL中的INSERT语句用于向数据库表中插入新的记录。其基本语法格式如下:INSERTINTOt

如何实现MySQL中创建表的语句?如何实现MySQL中创建表的语句?Nov 08, 2023 pm 08:21 PM

如何实现MySQL中创建表的语句?在MySQL数据库中,创建表是非常重要的操作之一。创建表的语句需要考虑到表的结构、字段类型、约束等各种因素,以确保数据存储的准确性和完整性。下面将详细介绍如何在MySQL中创建表的语句,包括具体的代码示例。首先,我们需要连接到MySQL数据库服务器。可以使用以下命令来连接:mysql-uusername-p接着,输入密

PHP和PDO: 如何插入数据到MySQL数据库PHP和PDO: 如何插入数据到MySQL数据库Jul 28, 2023 pm 05:33 PM

PHP和PDO:如何插入数据到MySQL数据库概述:本文将介绍如何使用PHP的PDO扩展来插入数据到MySQL数据库。PDO是PHP的一种数据库访问抽象层,可以与多种数据库进行交互,包括MySQL。步骤:连接到MySQL数据库:在使用PDO插入数据之前,我们需要先与MySQL数据库建立连接。下面是一个示例代码,展示了如何连接到MySQL数据库。//设置数

用于将数据插入到现有MySQL表中的PHP函数是哪个?用于将数据插入到现有MySQL表中的PHP函数是哪个?Sep 07, 2023 pm 01:05 PM

PHP使用 mysql_query函数将数据插入现有MySQL表中。该函数采用两个参数,成功时返回TRUE,失败时返回FALSE。其语法如下-语法boolmysql_query(sql,connection);以下是该函数中使用的参数-S。编号参数及说明1.Sql必需-用于将数据插入现有MySQL表的SQL查询2.连接可选-如果未指定,则将使用mysql_connect最后打开的连接。

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),