This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM `users`; | |
SELECT * FROM `users` WHERE id = 1; | |
SELECT * FROM `users` WHERE id > 1; | |
SELECT * FROM `users` WHERE id >= 1; | |
CREATE DATABASE <database_name>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
List<String> myList = [ | |
'Zarni', | |
'Say May', | |
'Puu Lay', | |
'Bling', | |
]; | |
//print(myList.first); //output - Zarni | |
//print(myList.last); //output - Bling |