一.c#
最基本的格式:
[code]using system;
namespace u
static void main(string args)
}}[/code]
二.sql
語句:
1--建立資料庫
create database bulls
2--引用資料庫
use bulls
3--建立表
create table stu(
id int identity (101,1) primary key,
name varchar(50) not null
password varchar(10)
)4--查詢表中所有資訊
select * from users
宣告:此篇文件時來自於
【狗刨學習網】
社群-unity極致學院
5--插入一行資料
insert into 《表名
> [(
列名)] values(
值列表)
6--更新資料
update 《表名
> set 《列名=
『更新值』
>
delete from 《表名
> [where<
刪除值》]
不釋放空間,有定義;
7--刪除資料
delete from 《表名
> [where <
刪除值》]
8--刪除庫和刪除表
truncate table stu (刪除內容,釋放空間,還有定義)
9--新增一列
alteer table 表名
add
列名 型別 (長度)
null
10--更改列型別
alter table users alter column age varchar(3)
11--刪除一列
after table users alter drop column age
12--內連線
select students.sname,score.courseid,score.score
from students.score id,c.score
where students.scode id,c.score
13--左外連線
select s.sname, c.course id, c.score
from studentts as s
left join score as c
on c.studentid =s.scode
14--右外連線
select titles.title_id, titles,publishers,pub_name
from titles
right outer join publishers
on titles .pub_id =publlishers.pub_id
C語言 分支語言和迴圈語句
分支語句 if switch 迴圈語句 while for do while if語句 if語句的結構 if 表示式 語句 if 表示式 語句1 else 表示式 語句2 多分支 if 表示式1 語句1 else if 表示式2 語句2 else 語句3 注意 如果表示式的結果為真 則語句1執行,否...
C語言基本語句
順序結構 程式按照順序從上往下依次執行。選擇結構 分為但分支結構,多分支結構。迴圈結構 當型迴圈結構 先判斷在執行 直到型迴圈結構 先執行一次迴圈體再判斷 控制語句 完成程式流程控制,包括條件 迴圈 分支等。函式呼叫語句 由函式呼叫加分號構成。表示式語句 在表示式後面加分號構成,常用的有賦值語句。空...
C語言和 C 語言關係
沒有深思熟慮的設計過程 使用時存在很多 灰色地帶 殘留量過多低階語言的特徵 直接利用指標進行記憶體操作 最終程式執行效率的高效 當面向過程方 暴露越來越多的缺陷的時候,業界開始考慮在工程專案中引入物件導向的設計方法,而第乙個需要解決的問題就是 高效的物件導向語言,並且能夠相容已經存在的 c語言 物件...