හ්ම්ම් ඔන්න මේ පාර කරපු C ටික තේරුනේ නැනේ මට තේරුන විදියට sup එකක් දෙන්නම් හොද...
Saturday, May 28, 2016
Tuesday, May 17, 2016
ඔන්න ඊලග කොටස
මේක ඉතිං දන්නවානේ GROUP කියන්නේ කණ්ඩායම් විදියට data වෙන් කරලා පෙන්නන්ඩ use කරන code එකක්
GROUP BY
The SQL GROUP BY CLAUSE IS USED IN COLLABORATION WITH THE SELECT STATEMENT TO ARRANGE IDENTICAL DATA INTO GROUPS.
THE GROUP BY CLAUSE FOLLOWS THE WHERE CLAUSE IN A SELECT STATEMENT AND PRECEDES...
Monday, May 16, 2016
Practical Handout 15-05-2016
Enter two numbers through the keyboard .if the firs number is divisible by the second number,then print"divisible",otherwise display "not divisible"
#include<stdio.h>
void main()
{
int first, second;
printf("Enter two numbers:\n");
scanf("%d%d",&first, &second);
if(first%second==0)
...
ඔන්න 15 ද තව SQL Lesson එකක් කරානේ ORDER BY
GROUP BY HAVING ඇත්තම කිවොත් මට නම් මේක ඒ වෙලාවේ තේරුනේ නැ
එත් try එකක් දීලා බලමු හොදේ
The SQL ORDER BY clause is used to short the data in ascending or descending order,based on one or more columns.some database sorts query results in ascending order by default.
මේ...
Sunday, May 15, 2016
අපි කොහොමද MySQL user කෙනක් විදියට ලොග් වෙලා database එකට ලොග් වෙන්නේ
ඔන්න ඔයාලට DSAD එකේ කුප්පිය මන් පටන් ගත්තා කාට හරි ඉතින් එකතු වෙන්න පුළුවන් මේ සතියේ කරපු SQL වල SYNTAX ටිකක් FILE ටිකයි මන් UPLOAD කරා හොදේ
Author_Table.sql
Book_table.sql
Publisher.sql
CODE ටිකත් ඕනි නේද ඔන්න එහනම්
mysql -h 192.168.2.5 -u DSAD16011 -p
මෙන්න මේකන් තම ඔයාලගේ MYSQL එකට LOG ...