Erkbeg يوللانغان ۋاقتى 2014-11-3 11:50:49

ساندان ئۆگۈنۈش خاتىرسى

بۇ يازمىنى ئاخىرىدا   Erkbeg تەھرىرلىگەن. ۋاقتى  2014-11-3 11:52  

ئەسسالامۇ-ئەلەيكۇم ،تورداشلار ! مەن تۆۋەندە مايسىكۇل ئۆگۈنۈش خاتىرەمنى ئورتاقلىشىپ ئۆتىمەن .قىزىقىشى بارلار بولسا بۇ توغرىسدا مۇنازىرلىشپ بېقىشنى خالايمەن.
مەكتەپ كومپيۇتېرخانسىدا بولغاچقا ئۆلچەملەشكەن ئۇيغۇر لاتىن ھەرپى ئىشلەتتىمnet start mysql                        #qozghash
net stop mysql                         #etish
mysql -u ismi -pim                #ulash
show databases;                        #barliq sandanni korsitish
create database db_mydb;        #db_mydb namliq sandan qurush
use db_mydb;                        #ishletmekchi bolghan sandanni tallash
drop database db_mydb;                #ochurush
show tables;                        #sandandiki jediwelni korsitish
create table tb_mytb(                                #tb_mtb jediwel qurush misali
        id int not null auto_increment,         #id
        name varchar(50) not null,                #name
        description varchar(200),                #description -  bayanat
        primary key (id)                        #achquchini id qilish
);
create table score(                                #score jediwili qurush
        sid int(11) primary key,       
        sname varchar(50) not null,
        dbscore int(100) not null
);
desc tb_mytb;                          #tb_mytb ning tuzulishini korush
alter table score add column (class char(4));                #score ning ichige class bolkini qoshtuq
alter table score drop column class;                        #score ning ichidiki class bolkini ochurush
drop table tb_mytb;                                #tb_mytb ni ochurush
insert into score                                 #score ning ichige uchur kirguzish
values(007,'palanijan',100,'3-1');                #char tipliqni         peshke alimiz
select sid,sname,dbscore from score;                #score din sid sname dbscore qatarliq uchurnila izdesh
select * from tb_mytb;                #jediweldiki barliq uchurlarni korsitish
update score set sname='palanigul' where sid=007;         #ismini palanigulgha ozgerttim
update score set class='3-2' where sid=7;                #sinipini 3-2 ge ozgerttim
delete from score where sid=7;                                #sid si 7 bolghan uchurni ochurush







bezi englizche sozlukler:
start        bashlash
stop        toxtash
show        korsitish
databases        sandanlar
create                qurush
use        ishlitish
drop         ochurush
table        jediwel
not        emes
null        bosh
auto_increment        ozilikidin toldurlidu dimekchi
primary key         achquchluq
char                herip
int         putun
varchar                ehwalgha qarap yoghnalaydighan herip tizmisi
select                izdesh
from                din-tin
alter                 tehrirlesh
add                qoshush
cloumn                ret
insert                qisturush
update                yuqiri koturush,yenglash
delete                ochurush

يوللانغان ۋاقتى 1970-1-1 06:00:00

يوللانغان ۋاقتى 1970-1-1 06:00:00

بەت: [1]
: ساندان ئۆگۈنۈش خاتىرسى