Notes
Notes - notes.io |
WHILE DONGUSU
While ile bildirilen koşul doğru olduğu sürece blok içinde dönülür.
Blok içindeki sql ifadenin tekrar tekrar çalıştırılması sağlanır.
BREAK : IF ile bildirilen diğer bir koşul gerçekleştirildiğinde dögüyü kırıp çıkar.
CONTINUE : IF ile bildirilen bir koşul gerçekleştiğinde CONTINUE satırından sonraki satırlar çalıştırılmadan, döngünün ilk astırına gidilmesini sağlar.
WEHILE koşul1
BEGIN
------
SQL İFADELER
-----------
IF (koşul2) BREAK
IF (koşul3) CONTUNUIE
____SQL ifadeler2
END
*/
-- 1 den 12 ye sayıları yazdıralım
DECLARE @say INT
SET @say=1
WHILE @say<=12
BEGIN
PRINT @say
SET @say=@say+1
END
-- 1 den 30 A kadar 25i yazdıktan sonra döngüden çıkalım
DECLARE @say INT
SET @say=1
WHILE @say<=30
BEGIN
PRINT @say
SET @say=@say+1
IF @say=26 BREAK
END
-- 1 den 30 a kadar sayarken12-25 arası yazılmasın (sınırlar dahil )
DECLARE @İ int
SET @i=0
WHILE @i<30
BEGIN
SET @i=@i+1
IF @i>=15 AND @İ<=25 CONTINUE
PRINT @i
END
-- ASCII tablosunu basalım, hatta tabloya insert edeli
-- ASCII nin karakter karşılığını CHAR(ascii) verir
PRINT CHAR(65)+' '+CHAR(97)
PRINT CHAR(65)+' '+CHAR(98)
-- 0 dan 255 e tüm ascii değerlerinin karakter karşılığını yazalım
DECLARE @say int, @H CHAR(1) --@H sabit uzunluklu dize bir karekter uzunluğunda
SET @say=0;
WHILE @say<256
BEGIN
SET @H = CHAR(@say) --sayı -> karektere dönüştürülen fonksiyon
PRINT 'ascii kodu'+CONVERT(varchar(3), @say) + ' ,karakteri'+ @H
set @say = @say+1
END
-- unicode lara karşılık karakterleri while döngüsü ile basın
-- 65535 karakterli bir dize de tutun
print NCHAR (65) + NCHAR(97)+ NCHAR(1000)+NCHAR(65535)
@tamami nvarchar(6556)
DECLARE @say int, @H NCHAR(1) --@H sabit uzunluklu dize bir karekter uzunluğunda
SET @say=0;
WHILE @say<65536
BEGIN
SET @H = NCHAR(@say) --sayı -> UNİCODE karektere dönüştürülen fonksiyon
PRINT 'uni code'+CONVERT(nvarchar(5), @say) + ' ,karakteri'+ @H
set @say = @say+1
END
-- Bir karakterin ASCII kodunu nasıl öğreniriz ?
PRINT ASCII('A')
SELECT ASCII('a') AS Küçük_a , ASCII('z') AS Küçük_z
-- 'Merhaba Dünya' yazısının her bir harfinin ASCII değerlerini gösteriniz
SELECT ASCII('MERHABA DÜNYA')
--Bir karakterin unicode karşılığını
Print unicode('A')
DECLARE @instring NCHAR(12);
SET @instring = ''
SELECT UNICODE (@instring),
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team