代码搜索:字符型
找到约 10,000 项符合「字符型」的源代码
代码结果 10,000
www.eeworm.com/read/338182/12320512
txt 合并字符串.txt
就是合并字符串吧?
--带符号合并行列转换
--有表t,其数据如下:
a b
1 1
1 2
1 3
2 1
2 2
3 1
--如何转换成如下结果:
a b
1 1,2,3
2 1,2
3 1
create table tb
(
a int,
b int
)
insert into tb
www.eeworm.com/read/131413/14147343
txt 字符串操作 .txt
字符串操作
--------------------------------------------------------------------------------
作者:不详 来源于:不详 发布时间:2005-2-13 15:54:20
Delphi 中字符串的操作很简单,但幕后情况却相当复杂。Pascal 传统的字符串操作方法与Windows 不同,Windows吸取了C
www.eeworm.com/read/230732/14277665
txt 字符模式设备范例.txt
/*
* 声明:本范例源于书籍‘NiosII软件架构解析’
* 作者:蔡伟纲
* 博客地址: http://NiosII.cublog.cn
*
*/
#include
#include
int main (void)
{
//将printf的内容由stdout输出;
printf("This application
www.eeworm.com/read/229728/14318559
chr 自定义字符.chr
www.eeworm.com/read/227935/14406150
txt 合并字符串.txt
tab1
c1 c2
--- ---
001 a
001 b
001 c
002 a
002 b
003 b
...
现在想实现如下的格式
c1 c2
--- ---
001 a,b,c
002 a,b
003 b
请问如何用SQL解决,不胜感激
/*解答:*/
create table tab1(c1 varchar(5),c2 char(1))
ins
www.eeworm.com/read/227639/14418836
c 字符串查找.c
#include
#define MS 20
char a[MS]="whatisit";
char b[MS]="*is*";
int searchStr(char s1[MS],char s2[MS],int p1,int p2);
bool chazhao(char a[MS],char b[MS]);
void main()
{
int
www.eeworm.com/read/224938/14561929
txt 字符模式设备范例.txt
/*
* 声明:本范例源于书籍‘NiosII软件架构解析’
* 作者:蔡伟纲
* 博客地址: http://NiosII.cublog.cn
*
*/
#include
#include
int main (void)
{
//将printf的内容由stdout输出;
printf("This application
www.eeworm.com/read/122580/14681874
c 字符串查找.c
#include
#define MS 20
char a[MS]="whatisit";
char b[MS]="*is*";
int searchStr(char s1[MS],char s2[MS],int p1,int p2);
bool chazhao(char a[MS],char b[MS]);
void main()
{
int
www.eeworm.com/read/121691/14741716