unity3D SQL基本操作

2021-06-27 13:06:51 字數 1436 閱讀 9080

建立資料庫和表

1. 建立資料庫:

create database 資料庫名--

create  database  second

2. 利用資料庫:

use 

資料庫名

3. 建立資料表:

create table 表名(

id int identity(101,1) primary key,

name varchar(20) not null,

password varchar(10) )

4. 查詢所有資訊

select * from 表名

create database 資料庫名

on primary (

name=資料檔案別名,

filename=『d:\data\data.mdf』,

size=25mb,

maxsize=50mb,

filegrowth=2mb )

log on (

name=日誌檔案別名,

filename=『d:\data\log.ldf』,

size=10mb,

maxsize=20mb,

filegrowth=25% )

刪除資料庫

drop database 資料庫名-- create  database  second

刪除表

drop table 表名--drop  table  student

如果有identity產生的自增id列,delete from後仍然從上次的數開始增加,即種子不變,而truncate後,種子會恢復初始。

插入一行資料:

insert  into  《表名》  [列名] values (值列表)

插入多行資料:

insert into 《表名》 (列名)

select 《列值》 union

select 《列值

> union

--insert  into  users(name,password)

--select  '王五', '789'  union

--select  '六六', '987'  union

--select '齊齊','654'

更新資料:

update《表名》set《列名=更新值》

[ where《更新條件》 ]

--update  users  set  name='王五'  where id=103

我們一定要實際動手操作,才能進一步加深理解度,希望你能從我的日誌中解決您的困難。

Unity3D 學習教程 6 基本操作

開啟檔案 新建乙個場景 開啟乙個場景 儲存場景 新建乙個專案 專案可以包含多個場景 open是開啟專案 儲存專案 這個很重要 把程式輸出成 應用程式 還是web程式 或手機程式 還有ps2程式 下面詳細介紹 unity3d 可以輸出各種應用 非常方便 520520 520 520 5200 5200...

Unity3d AssetBundle基本格式分析

參考 disunity 和雲風的分析 寫的c 版本的 assetbundle基本格式分析工具 assertbundle檔案頭 public void read bytearray bs if streamversion 2 if streamversion 3 bs.readbyte assetbu...

unity3D 列的基本操作和約束

列的基本操作 1.新增一列 alter table 表名 add 列名 型別 長度 null alter table teacher add age int null 2.更改一列型別 alter table 表名 alter column 列名 資料型別 長度 column 列 alter tab...