- 博客(5)
- 收藏
- 关注
原创 数据库操作案例
1请用 create index 语句在数据库 db_test 的表 content 中,根据留言标题列的前三个字符采用默认的索引类型创建一个升序索引CREATE INDEX index_subject ON content(subject(3)ASC);2请使用 select into...outfile 语句,备份数据库 db_test 中表 content 的全部数据到 c 盘的 backup 目录下一个名为 backupcontent.txt 的文件中。select * fro
2022-04-28 10:41:35
621
原创 c语言中的常量
C语言的常量分为以下几种:1.字面常量361.742.const修饰的常变量没有constint num=7;printf("%d\n",num); 输出7num=77;printf("%d\n",num); 输出77有constconst int num=7;printf("%d\n",num); 输出7num=77;printf("%d\n",num); 报错num被修饰不可以输出3.#define定义
2022-01-13 22:05:42
1267
原创 【无标题】
extern是声明外部符号的一个工程,源代码a,源代码b(有global变量(int global=2)在源代码a里可以用extern int gloval
2022-01-13 21:21:07
118
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅