2020 11 28增刪改查基礎

2021-10-10 22:57:11 字數 1092 閱讀 8187

#include#include//定義結構體型別

struct customer

;int loop = 1;

char key;

int customernum = 1;

struct customer customers[100];

void getcustomerinfo(struct customer *customer)

void listcustomers()

}void addcustomer()

//根據輸入的id,返回index,如果沒有,返回-1

int findindex(int id)

} return -1;

}//如果返回1,表示刪除成功,如果是0,刪除失敗

int delcustomer(int id)

//2.操作完後customernum-1

customernum--;

return 1;

}void delview()

printf("\n 確認是否刪除(y/n)?");

scanf("%c",&choice);

getchar();

if(choice == 'y')

else

}}while(loop);

}int user_exit()

else if(choice == 'n')

else

}while(1); }

void data_xiugai(int index)

else if(choice == 'n')

else

}while(1);

}void user_xiugai()

index = findindex(enter_id);

if(index==-1)

else

}while(1);

}void mainmenu()

}while(loop);

printf("\n你已退出了系統...\n");

getchar();

}void main()

基礎級 增刪改查

本文涵蓋內容均源於 php mysql novice to ninja 一書,在此感謝著者 kevin yank 澳 1.建立庫 creata database db name2.建立表 creata table db name.table name default character set ch...

SQL Server 增刪改查基礎

主鍵為自增時可不填寫 插入單條資料 insert into product values 008 原子筆 辦公用品 100,null,2019 11 11 insert into product select 008 原子筆 辦公用品 100,null,2019 11 11 插入多條資料 inser...

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...