建立浮點型表

2021-04-17 23:18:23 字數 372 閱讀 2899

#銷售記錄表

#銷售記錄表

create table sales (

id int auto_increment,

inputime datetime not null,

staff int not null,

customer int not null,

good_code varchar(10) not null,

amount decimal(10,2) not null default 0.00,

price decimal(8,2) not null default 0.00,

memo text,

primary key(id) );

浮點型資料

浮點型資料是用來表示具有小數點的實數的。為什麼在c中把實數稱為浮點數呢?在c語言中,實數是以指數形式存放在儲存單元中的。乙個實數表示為指數可以有不止一種形式,如3.14159可以表示為 3.14159 10e0,0.314159 10e1,0.0314159 10e2,31.4159 10e 1,3...

整型 字元型和浮點型

1.整型資料型別 c定義了5種整型資料型別。整型資料型別表 序號型別名稱 說明位元組數 取值範圍 1signed char 有符號的單位元組整數型別 1 128 127 2short int 短整型2 32768 32767 3int整型4 2147438648 2147438647 4long i...

浮點型轉string

方法1 sprintf char destination,char double float 是用destination來儲存double float值的字元 然後直接string a destination 該方法有乙個缺點,就是儲存的值可能和輸入的double float的值有誤差,即最後字串a...