Finally, we’d create the main table for Customer. Here, you’d notice that all the steps taken to create the main table are similar to how we’ve created the lookup table and tuple tables.
1. Right click on TEST_Monster.
Welcome to Learning I.T from zero blogspot. This blog is written through my own personal working experience, what I've learnt and hopefully it would play a small part in the IT industry.I am dedicating this blog to the rest of the IT dummies like me who knows little about I.T yet they WISH to venture into the WORLD of I.T with lots of determination.
Operator | Syntax | Description |
---|---|---|
< | a < b | Result is true if a is less than b; otherwise, it is false. |
<= | a <= b | Result is true if a is less than or equal to b; otherwise, it is false. |
> | a>b | Result is true if a is greater than b; otherwise, it is false. |
>= | a>=b | Result is true if a is greater than or equal to b; otherwise, it is false. |
Operator | Description | Examples | Result |
---|---|---|---|
&& | Conditional -AND | false && false | false |
false && true | false | ||
true && false | false | ||
true && true | true | ||
Conditional -OR | false false | false | |
false true | true | ||
true false | true | ||
true true | true | ||
& | Logical-AND | false & false | false |
false & true | false | ||
true & false | false | ||
true & true | true | ||
Logical-OR | false false | false | |
false true | true | ||
true false | true | ||
true true | true | ||
^ | Logical -XOR | false^false | false |
false^true | true | ||
true^false | true | ||
true^true | false |
Operator | Description | Example | Same Result as |
+= | Increment assignment operator | x += 5; | x = x + 5; |
–= | Decrement assignment operator | x –= 5; | x = x – 5; |
*= | Multiplication assignment operator | x *= 5; | x = x * 5; |
/= | Division assignment operator | x /= 5; | x = x / 5; |
%= | Modulus assignment operator | x %= 5; | x = x % 5; |
Keyword | Description | Size |
byte | Byte-size | 8-bit |
short | Short | 16-bit |
int | Integer | 32-bit |
long | Long | 64-bit |
char | Single | 16-bit |
float | Single-precision | 32-bit |
double | Double-precision | 64-bit |
boolean | True | 1-bit |
Literal | Data Type |
27, 027,0x1c | int |
100L | long |
45.0D , 27.0e3 | double |
99.0F | float |
'B' | char |
true /false | boolean |
null | null object reference |
Operator | Description |
+ | Addition |
- | Subtraction |
* | Multiplication |
/ | Division |
% | Modulus (division remainder) |