IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   MsSQL (https://www.ircforumlari.net/mssql/)
-   -   SQL TESTi (Sql bilginizi test edin) (https://www.ircforumlari.net/mssql/370211-sql-testi-sql-bilginizi-test-edin.html)

Fonzerelli 10 Aralık 2010 17:49

SQL TESTi (Sql bilginizi test edin)
 
Arkadaşlar, can sıkıntısı ve baş ağrısı ile + iş yokkene nette dolaşırken(vakit öldürürken kısacası) güzel bir site yakaladım ve oldukça keyifli hemde öğretici. Yarışması var SQL ile ilgili SQL bilginizi ufak bir test edin hemde yeniden bilgilerinizi tazeleyin.

QUİZ :

[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]



Benim sonuç bu çıktı (:

Result:

17 of 2085%
You can be proud of yourself!
Time Spent
5:21


Felaket başım ağırdı ama yapcak birşey yok =) Bildiğini yanlış yapmakta keyifli.


PHP- Kodu:

[B]W3Schools SQL Quiz[/B]

    
SQL QUIZ Points17 out of 20                           
1. What does SQL stand 
for?
[
COLOR=greenCorrect Answer![/COLOR]
2. Which SQL statement is used to extract data from a database?
You answeredEXTRACT [COLOR=redWrong Answer![/COLOR]
3. Which SQL statement is used to update data in a database?
[
COLOR=greenCorrect Answer![/COLOR]
4. Which SQL statement is used to delete data from a database?
[
COLOR=greenCorrect Answer![/COLOR]
5. Which SQL statement is used to insert new data in a database?
[
COLOR=greenCorrect Answer![/COLOR]
6. With SQLhow do you select a column named "FirstName" from a table named "Persons"?
[
COLOR=greenCorrect Answer![/COLOR]
7. With SQLhow do you select all the columns from a table named "Persons"?
[
COLOR=greenCorrect Answer![/COLOR]
8.  With SQLhow do you select all the records from a table named  "Persons" where the value of the column "FirstName" is "Peter"?
[
COLOR=greenCorrect Answer![/COLOR]
9.  With SQLhow do you select all the records from a table named  "Persons" where the value of the column "FirstName" starts with an "a"?
[
COLOR=greenCorrect Answer![/COLOR]
10.  The OR operator displays a record if ANY conditions listed are true.  The AND operator displays a record if ALL of the conditions listed are  true
[COLOR=greenCorrect Answer![/COLOR]
11.  With SQLhow do you select all the records from a table named  "Persons" where the "FirstName" is "Peter" and the "LastName" is  "Jackson"?
[
COLOR=greenCorrect Answer![/COLOR]
12.  With SQLhow do you select all the records from a table named  "Persons" where the "LastName" is alphabetically between (and including)  "Hansen" and "Pettersen"?
[
COLOR=greenCorrect Answer![/COLOR]
13. Which SQL statement is used to return only different values?
You answeredSELECT DIFFERENT [COLOR=redWrong Answer![/COLOR]
14. Which SQL keyword is used to sort the result-set?
[
COLOR=greenCorrect Answer![/COLOR]
15. With SQLhow can you return all the records from a table named "Persons" sorted descending by "FirstName"?
[
COLOR=greenCorrect Answer![/COLOR]
16. With SQLhow can you insert a new record into the "Persons" table?
[
COLOR=greenCorrect Answer![/COLOR]
17. With SQLhow can you insert "Olsen" as the "LastName" in the "Persons" table?
[
COLOR=greenCorrect Answer![/COLOR]
18. How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?
You answeredUPDATE Persons SET LastName='Hansen' INTO LastName='Nilsen' [COLOR=redWrong Answer![/COLOR]
19. With SQLhow can you delete the records where the "FirstName" is "Peter" in the Persons Table?
[
COLOR=greenCorrect Answer![/COLOR]
20. With SQLhow can you return the number of records in the "Persons" table?
[
COLOR=greenCorrect Answer![/COLOR]
[
LEFT][/LEFT




Dökümüde alabiliyoruz, hangileri doğru hangileri yanlış.

chaos 13 Aralık 2010 17:08

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Bu da benim skorum biraz hata yapmisim ama fena degil herhalde.

PHP- Kodu:

1. What does SQL stand for?
[
COLOR=greenCorrect Answer![/COLOR]
2. Which SQL statement is used to extract data from a database?
You answeredEXTRACT [COLOR=redWrong Answer![/COLOR]
3. Which SQL statement is used to update data in a database?
[
COLOR=greenCorrect Answer![/COLOR]
4. Which SQL statement is used to delete data from a database?
[
COLOR=greenCorrect Answer![/COLOR]
5. Which SQL statement is used to insert new data in a database?
[
COLOR=greenCorrect Answer![/COLOR]
6. With SQLhow do you select a column named "FirstName" from a table named "Persons"?
[
COLOR=greenCorrect Answer![/COLOR]
7. With SQLhow do you select all the columns from a table named "Persons"?
[
COLOR=greenCorrect Answer![/COLOR]
8.  With SQLhow do you select all the records from a table named  "Persons" where the value of the column "FirstName" is "Peter"?
[
COLOR=greenCorrect Answer![/COLOR]
9.  With SQLhow do you select all the records from a table named  "Persons" where the value of the column "FirstName" starts with an "a"?
[
COLOR=greenCorrect Answer![/COLOR]
10.  The OR operator displays a record if ANY conditions listed are true.  The AND operator displays a record if ALL of the conditions listed are  true
[COLOR=greenCorrect Answer![/COLOR]
11.  With SQLhow do you select all the records from a table named  "Persons" where the "FirstName" is "Peter" and the "LastName" is  "Jackson"?
[
COLOR=greenCorrect Answer![/COLOR]
12.  With SQLhow do you select all the records from a table named  "Persons" where the "LastName" is alphabetically between (and including)  "Hansen" and "Pettersen"?
[
COLOR=greenCorrect Answer![/COLOR]
13. Which SQL statement is used to return only different values?
[
COLOR=greenCorrect Answer![/COLOR]
14. Which SQL keyword is used to sort the result-set?
You answeredSORT [COLOR=redWrong Answer![/COLOR]
15. With SQLhow can you return all the records from a table named "Persons" sorted descending by "FirstName"?
[
COLOR=greenCorrect Answer![/COLOR]
16. With SQLhow can you insert a new record into the "Persons" table?
[
COLOR=greenCorrect Answer![/COLOR]
17. With SQLhow can you insert "Olsen" as the "LastName" in the "Persons" table?
[
COLOR=greenCorrect Answer![/COLOR]
18. How can you change "Hansen" into "Nilsen" in the "LastName" column in the Persons table?
[
COLOR=greenCorrect Answer![/COLOR]
19. With SQLhow can you delete the records where the "FirstName" is "Peter" in the Persons Table?
[
COLOR=greenCorrect Answer![/COLOR]
20. With SQLhow can you return the number of records in the "Persons" table


Fonzerelli 13 Aralık 2010 21:19

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Taygun azcık insan olurmusun (: bilerek insan 2-3 tane hata yapar benim gibi paylaşımın için teşvik edici oluyor.

Tebrikler :p

Bu arada time span de çok onemli her bir soruya yaklasık 16-17 sanıyede cvp verdim bak. =)) lütfen zamanıda paylaşalım

chaos 13 Aralık 2010 23:01

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Alıntı:

Fonzerelli Nickli Üyeden Alıntı (Mesaj 1040615834)
Taygun azcık insan olurmusun (: bilerek insan 2-3 tane hata yapar benim gibi paylaşımın için teşvik edici oluyor.

Tebrikler :p

Bu arada time span de çok onemli her bir soruya yaklasık 16-17 sanıyede cvp verdim bak. =)) lütfen zamanıda paylaşalım

Zamani paste etmeyi unuttum, tekrar edersem sure kisalir ve adil olmaz ama ortalama 4 dakika harcadigimi dusunuyorum 4 dakikadan az olabilir ama cok degil Tufancim :P ve eglenceliydi zaten forumu da senin yuzunden takip ediyorum :))

Fonzerelli 13 Aralık 2010 23:06

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Forum bizi, bizde konuları takip ediyoruz =) Vicious Circle gibiyiz :p

Azcık SQL Statement paylaş

chaos 13 Aralık 2010 23:18

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Alıntı:

Fonzerelli Nickli Üyeden Alıntı (Mesaj 1040615960)
Forum bizi, bizde konuları takip ediyoruz =) Vicious Circle gibiyiz :p

Azcık SQL Statement paylaş

left join, right join, inner join vb. sorgular icin biraz erken ama aslinda PHP tarafinda basit birseyler tasarlarsam olabilir, uygulamali gosteririz.

0x94 18 Aralık 2010 22:07

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Result:
19 of 20

95%

You can be proud of yourself!

Time Spent
5:16

bu sorular çok basit daha zorları yokmu :f

Fonzerelli 18 Aralık 2010 22:34

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Ingılzıcen olması guzel :p Açarım bir başlık SQL cümleciğini goğru şekilde yazmak için, doğruyu yazana kadar daima güncel tutarız başlığı (:

0x94 19 Aralık 2010 01:00

Cevap: SQL TESTi (Sql bilginizi test edin)
 
şöyle birşey olsaydı güzel olurdu aslında ORD(MID((VERSION()), 1, 1)) > 52 :p

Rengahenk 21 Kasım 2011 23:29

Cevap: SQL TESTi (Sql bilginizi test edin)
 
Yeni başlayan biri için idare ederim sanırım..

Alıntı:

Result:

16 of 20
80%
Almost! Study a little more and take the test again!


Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 06:48.

Powered by vBulletin® Version 3.8.8 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2024 IRCForumlari.Net