• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

369 Character courses in London

Oracle SQL foundation

5.0(3)

By Systems & Network Training

Oracle SQL training course description The Oracle SQL course is designed to give delegates practical experience in writing SQL statements and scripts using Oracle SQL. The basic SELECT statement, the use of SQL functions and the basic table and view handling statements are introduced. What will you learn Create SQL statements to query database tables. Use standard aggregate functions and related SELECT statement clauses. Join Tables. Use basic subqueries and the set operators. Use numeric, character and date functions. Use conversion and other miscellaneous functions. Use SQL parameters. Use complex subqueries. Create and alter tables and views. Insert, update and delete rows in database tables. Manage sequences and synonyms. Oracle SQL training course details Who will benefit: Anyone who needs to use and understand Oracle SQL to query and update data in an Oracle database. Prerequisites: None. Duration 3 days Oracle SQL training course contents Retrieving data with the SELECT statement The SELECT statement, The SELECT and FROM clauses, Conditions and the WHERE clause, Other conditional operators, Logical operators, The ORDER BY clause, Column aliases, Arithmetic expressions, Precedence of operators. Aggregate functions Overview of built In aggregate functions, The GROUP BY clause, The HAVING clause. Joining tables Overview of table joins, Inner joins, Table aliases, Outer joins, Self joins, ANSI standard joins. Basic subqueries and set operators Overview of subqueries, Basic subqueries, Set operators, The union, intersect and ,minus operators. Numeric, character and data functions Function types, Using the table dual to try out functions, Numeric functions, Character functions, String concatenation, Date arithmetic and date functions. Conversion and miscellaneous functions Conversion functions, The NVL and NVL2 functions, The DECODE function, CASE expressions, The COALESCE and NULLIF functions. SQL parameters Command line substitution parameters, The accept command, The define and undefine commands. Complex subqueries Subqueries usage, In-line views, Top-N queries, Subqueries with joins, Multi column subqueries, Correlated subqueries, Subquery rules, Using the ANY, ALL and SOME operators. Managing data Inserting rows, Updating rows, Deleting rows, Verifying updates, Transaction control, Commit and rollback, Savepoints, Commits and constraints, Amending data in SQL developer. Managing tables Creating tables, Specifying constraints, Altering tables, columns and constraints, Dropping tables, columns and constraints, Recovering dropped tables, Copying tables. Managing indexes and views Creating indexes, Dropping indexes, Listing indexes, Creating and using views, Dropping views, Listing views. Managing sequences and synonyms Create a sequence, View sequence details, Create a synonym, List synonyms.

Oracle SQL foundation
Delivered in Internationally or OnlineFlexible Dates
£2,367

MySQL foundation

5.0(3)

By Systems & Network Training

MySQL foundation training course description The MySQL foundation course covers the basics of the SQL language as implemented by MySQL. The course is designed to give delegates practical experience in writing SQL statements using the MySQL client program and MySQL Workbench. The basic SQL statements, including the use of SQL functions and the basic table and view handling statements are introduced. What will you learn Create, alter and drop a MySQL database. Write SQL statements. Use SQL expressions and functions. Create and alter tables, indexes and views. Use transactions. Grant and revoke access privileges. Export and import data. MySQL foundation training course details Who will benefit: Anyone who needs to access and work with a MySQL Database. Prerequisites: An understanding of databases and exposure to information technology in general would be useful. Duration 3 days MySQL foundation training course contents Database concepts What is a database? database management systems, tables, rows and columns, indexes, primary keys, unique constraints and foreign keys, client-server architecture, supported data types, storage engines and table types, Information_Schema and MySQL Databases. Hands on using a database. Using the MySQL client What is the MySQL client? getting started and logging in, selecting a database, client commands, entering and executing SQL statements, retrieving previous commands, creating, editing and executing SQL files, redirecting output into a file, command line execution of MySQL scripts. Hands on Using the MySQL client. Basic SELECT The SQL SELECT statement, case sensitivity, quotes, statement terminator, syntax conventions, SELECT clause, FROM clause, conditions and the WHERE clause, logical operators, ORDER BY clause, column aliases, arithmetic expressions, precedence of operators. Hands on querying the sample database. LIMIT, UNION and AGGREGATE functions The LIMIT clause, UNION, UNION ALL, aggregate functions, GROUP BY clause, using Rollup with GROUP BY, HAVING clause. Hands on using limit, union and aggregate functions. Subqueries and joins Subqueries, cartesian products, table aliases, natural joins, join using, join on, multi-table joins. Hands on using subqueries and joins. Numeric and character functions Function types, testing functions, numeric functions character functions. Hands on using numeric and character functions. Data, time and other functions Date and time column types, date and time formats, Date format function, functions to return date time, functions to extract components from date time, date time arithmetic, miscellaneous functions. Hands on using date, time and other functions. Databases and tables Creating a database, selecting a database, creating tables, Auto_increment, show create table, column operations, constraint operations, copying tables, renaming tables, changing engine for tables, dropping tables, temporary tables. Hands on maintaining databases and tables. Indexes and views What is an index? creating an index, reviewing indexes, dropping indexes, what is a view? creating views, view restrictions, dropping views. Hands on maintaining indexes and views. Managing data Inserting rows, replacing rows, updating rows, deleting rows, Truncate statement, The COMMIT and ROLLBACK commands, savepoints, implicit commits. Hands on managing data. Access control Creating users, renaming users, dropping users, granting privileges, revoking privileges. Hands on creating users, granting and revoking. Import and export Exporting using SQL, importing using SQL, exporting from the command line, importing from the command line. Hands on export and import data.

MySQL foundation
Delivered in Internationally or OnlineFlexible Dates
£2,367

Querying Microsoft SQL Server

5.0(3)

By Systems & Network Training

Querying Microsoft SQL Server course description This course covers the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server and provides the foundation for all SQL Server-related disciplines; namely, database administration, database development and business intelligence. This course helps prepare for exam 70-761. Note: This course is designed for SQL Server 2014or SQL Server 2016. What will you learn Write SELECT statements. Create and implement views and table-valued functions. Transform data by implementing pivot, unpivot, rollup and cube. Create and implement stored procedures. Add programming constructs such as variables, conditions, and loops to T-SQL code. Querying Microsoft SQL Server course details Who will benefit: Database administrators, database developers, and business intelligence professionals. SQL power users, namely, report writers, business analysts and client application developers. Prerequisites: Database fundamentals Duration 5 days Querying Microsoft SQL Server course contents Introduction to Microsoft SQL Server Management studio, creating and organizing T-SQL scripts, using books online. Hands on working with SQL Server tools. T-SQL querying Introducing T-SQL, sets, predicate logic, logical order of operations in SELECT statements, basic SELECT statements, queries that filter data using predicates, queries that sort data using ORDER BY. Hands on introduction to T-SQL querying. Writing SELECT queries Writing simple SELECT statements, eliminating duplicates with DISTINCT, column and table aliases, simple CASE expressions. Hands on writing basic SELECT statements. Querying multiple tables cross joins and self joins, write queries that use Inner joins, write queries that use multiple-table inner joins, write queries that use self-joins, write queries that use outer joins, write queries that use cross joins. Hands on querying multiple tables. Sorting and filtering data Sorting data, filtering data with predicates, filtering data with TOP and OFFSET-FETCH, working with unknown values, WHERE clause, ORDER BY clause, TOP option, OFFSET-FETCH clause. Hands on sorting and filtering data. SQL Server data types Introducing SQL Server data types, Character data, date and time data, queries that return date and time data, write queries that use date and time functions, write queries that return character data, write queries that return character functions. Hands on working with SQL Server data types. DML Adding data to tables, modifying and removing data, generating automatic column values, Inserting records with DML, updating and deleting records using DML. Hands on using DML to modify data. Built-in functions Queries with built-in functions, conversion functions, logical functions, functions with NULL, queries that use conversion functions, queries that use logical functions, queries that test for nullability. Hands on built-in functions Grouping and aggregating data Aggregate functions, the GROUP BY clause, filtering groups with HAVING, queries that use the GROUP BY clause, queries that use aggregate functions, queries that use distinct aggregate functions, queries that filter groups with the HAVING clause. Hands on grouping and aggregating data. Subqueries Self-contained subqueries, correlated subqueries, EXISTS predicate with subqueries, scalar and multi-result subqueries. Hands on subqueries. Table expressions Views, inline table-valued functions, derived tables, common table expressions. queries that use views, write queries that use derived tables, Common Table Expressions (CTEs), write queries that se inline Table valued expressions (TVFs). Hands on table expressions. Set operators The UNION operator, EXCEPT and INTERSECT, APPLY, queries that use UNION set operators and UNION ALL, CROSS APPLY and OUTER APPLY operators. Hands on set operators. Windows ranking, offset, and aggregate functions OVER, window functions, ranking functions, offset functions, window aggregate functions. Hands on; windows ranking, offset, and aggregate functions. Pivoting and grouping sets PIVOT and UNPIVOT, grouping sets, queries that use the PIVOT operator, queries that use the UNPIVOT operator, queries that use the GROUPING SETS CUBE and ROLLUP subclauses. Hands on pivoting and grouping sets Executing stored procedures Querying data with stored procedures, passing parameters to stored procedures, simple stored procedures, dynamic SQL, the EXECUTE statement to invoke stored procedures. Hands on executing stored procedures. Programming with T-SQL T-SQL programming elements, controlling program flow, declaring variables and delimiting batches, control-of-flow elements, variables in a dynamic SQL statement, synonyms. Hands on programming with T-SQL Error handling T-SQL error handling, structured exception handling, redirect errors with TRY/CATCH, THROW to pass an error message back to a client. Hands on implementing error handling. Implementing transactions Transactions and the database engines, controlling transactions, BEGIN, COMMIT, and ROLLBACK, adding error handling to a CATCH block. Hands on implementing transactions.

Querying Microsoft SQL Server
Delivered in Internationally or OnlineFlexible Dates
£2,797

Screen Acting Course for Actors, Intermediate & Advanced Level

4.8(23)

By Beck Academy of Dramatic Art

Work with award winning filmmaker and leading London acting coach Fay Beck.

Screen Acting Course for Actors, Intermediate & Advanced Level
Delivered In-PersonJoin Waitlist
£315 to £380

The Art of Staying Calm: Anger Management in Action 1 Day Workshop in London

By Mangates

Anger Management 1 Day Training in London

The Art of Staying Calm: Anger Management in Action 1 Day Workshop in London
Delivered In-Person + more
£595 to £795

Time Management 1 Day Training in London

By Mangates

Time Management 1 Day Training in London

Time Management 1 Day Training in London
Delivered In-Person + more
£595 to £795

Report Writing 1 Day Training in London

By Mangates

Report Writing 1 Day Training in London

Report Writing 1 Day Training in London
Delivered In-Person + more
£595 to £795

The Ultimate Guide to Event Planning - 1 Day Workshop in London

By Mangates

Event Planning 1 Day Training in London

The Ultimate Guide to Event Planning - 1 Day Workshop in London
Delivered In-Person + more
£595 to £795

Conflict Management 1 Day Training in London

By Mangates

Conflict Management 1 Day Training in London

Conflict Management 1 Day Training in London
Delivered In-Person + more
£595 to £795

Mastering Maya Basics to Intermediate Course

By ATL Autocad Training London

Why Choose Mastering Maya Basics to Intermediate Course? Click here for more info: Website Our courses cater to graphic designers, animators, and beginners, providing industry-standard animation skills. Dive into 3D animation, modeling, simulation, and rendering for film, TV, games, and ads. Duration: 20 hours Approach: 1-on-1 Sessions. Schedule: Design your own schedule by pre-booking a convenient hour of your choice, available Mon to Sat between 9 am and 7 pm. I. Introduction to Maya (1.5 hours) Understanding Maya and its Applications Navigating the Maya Interface and Basic Tools Creating and Managing Projects II. 3D Modeling (3 hours) Basics of Polygon Modeling Creating Simple and Complex 3D Shapes Organic Shape Creation using NURBS Advanced Techniques: Extrusions, Bevels, and Editable Objects III. Texturing and Materials (1.5 hours) Introduction to Texturing and Material Creation UV Unwrapping and Texture Mapping Importing and Applying Textures and Images IV. Lighting and Rendering (2 hours) Fundamental Lighting Techniques Camera Setup and Composition Rendering Images and Animations Output Options and File Formats V. Animation (4 hours) Keyframe Animation and Animation Curves Rigging and Animating Characters Motion Paths and Animation Layers Editing Animation Clips VI. Rigging (2 hours) Introduction to Rigging and Skeletons Binding Skin and Weight Maps Creating Rigging Systems for Characters VII. Special Effects (1.5 hours) Particle Systems and Dynamics Creating Fluids, Fire, and Other Effects Special Effects Editing: Explosions, Smoke, and more VIII. Advanced Modeling Techniques (1.5 hours) Complex Objects using Booleans and Deformers Modifying Curves and Surfaces Organic Shape Creation with Sculpting Tools IX. Conclusion and Next Steps (0.5 hours) Course Review Further Learning Tips and Resources Q&A and Feedback Please note: The course content and duration are flexible, tailored to match learners' needs and skill levels. Throughout the course, lifetime email support ensures you receive guidance with any challenges you face. Embark on your Autodesk Maya journey, exploring 3D modeling and animation with confidence. Additional Topics Covered: Modeling: Surfaces, Control Vertex, Polygons, Extrusion, Vertices, Edges, Bridge Tool, Combining, Smooth, Mirror Geometry, Merging Vertices, Subdivision Modeling. Deformations: Twist, Lattice, Flare, Bend. Shapes: Lines, Pen Tools. Animations: Basic Keyframes, Vertex Animation, Clusters, Path Animations, Skeletons, Bones, IK Handle Tool, Skinning. Dynamics: Fire, Lighting, Soft and Rigid Bodies, Particles, Collisions, Gravity. Fur and Paint Effects: Fur Basics, Fur Color Corrections, Paint Effects, Paint Modifier, Brush Animations. Texturing: Diffuse and Bump Maps, Reflections, Transparency, Shaders, Toon Shaders, Glow Textures. Lighting: Basic and Advanced Lights, Shadows, Special Light Effects. Camera: Free and Aim Cameras, Camera Effects, Path Animations. Fluid Effects and Ncloth: 2D and 3D Containers, Collision Effects, Gravity, Wind Effects. Rendering: Images and Animations, Render Techniques, Resolution Settings, Batch Rendering. Download Maya Maya Proficiency: Master Maya's interface, tools, and functions, advancing from basic to intermediate levels. 3D Modeling Expertise: Create diverse 3D models using polygonal and NURBS techniques, from simple shapes to intricate designs. Texturing and Rendering Skills: Apply textures, create materials, and utilize advanced rendering techniques for high-quality visuals. Animation Techniques: Understand keyframe animation, rigging, and character animation, producing engaging animations and special effects. Special Effects and Dynamics: Explore particle systems, fluid dynamics, and advanced visual effects, enhancing realism in animations. Advanced Modeling and Sculpting: Master complex modeling techniques, including Booleans, deformers, and organic shape creation through sculpting tools. Professional Portfolio: Develop a diverse portfolio showcasing 3D modeling and animation skills, ready for presentation to employers or clients. Problem-Solving Skills: Learn creative approaches to solve complex 3D challenges effectively. Collaborative Abilities: Understand team dynamics and collaboration within the 3D production pipeline. Recommended Books: "Introducing Autodesk Maya 202X" by Dariush Derakhshani and Randi L. Derakhshani: Comprehensive beginner's guide to Maya's essential tools and techniques. "Mastering Autodesk Maya 20XX" by Todd Palamar: In-depth intermediate guide covering advanced features, modeling, animation, and rendering. "Maya Character Creation: Modeling and Animation Controls" by Chris Maraffi: Focuses on character creation, covering modeling, rigging, and animation. "Maya Secrets of the Pros" by Todd Palamar: Expert tips and techniques from professional Maya artists, detailing advanced workflows and best practices. "Stop Staring: Facial Modeling and Animation Done Right" by Jason Osipa: Specialized book on facial modeling and animation, perfect for character expression enthusiasts. "The Art of 3D Computer Animation and Effects" by Isaac Kerlow: Offers foundational knowledge in 3D computer animation principles, applicable to various software, including Maya. Mastering Maya Basics to Intermediate Course Benefits: Comprehensive Skill Development: Master essential tools and techniques, from basics to intermediate, with hands-on projects mirroring real industry scenarios. Industry-Grade Proficiency: Acquire expertise in Autodesk Maya, enhancing credibility in animation, visual effects, and gaming industries. Creative Exploration: Unlock creative potential through advanced shading, lighting, dynamics, and simulations, enabling imaginative project realization. Portfolio Enhancement: Build a strong portfolio showcasing skills in 3D modeling, animation, and rendering for career advancement. Individualized Support: Receive personalized guidance and feedback, ensuring tailored learning experiences and skill refinement. Potential Jobs After Course: 3D Animator: Create lifelike character animations for films, games, and advertisements. 3D Modeler: Design detailed 3D characters, environments, and objects for various applications. Visual Effects Artist: Produce stunning visual effects for movies, TV shows, and commercials. Texture/Lighting Artist: Develop intricate textures and set the mood with expert lighting. Rigging Specialist: Rig characters and objects for realistic movement in animations. Rendering Specialist: Optimize rendering capabilities for high-quality images and animations. Game Developer: Contribute to interactive game development using Maya's features. Freelance Artist/Animator: Work independently on diverse projects, collaborating with studios and agencies. Skill Advancement: Progressive Mastery: Develop from basics to intermediate levels in Autodesk Maya, honing essential tools for stunning 3D visuals and animations. Hands-On Learning: Interactive Practice: Engage in practical projects, refining your skills in 3D modeling, advanced materials, character animation, and high-quality renders. Industry-Ready Proficiency: In-Demand Skills: Acquire proficiency in Autodesk Maya, a key software in animation and gaming, enhancing your employability. Creative Exploration: Unlock Creativity: Experiment with advanced shading, lighting, and dynamic animations, unleashing your creative potential in Maya. Flexible Support: Tailored Learning: Access recorded lessons for review, deepening your understanding, with lifetime email support for continuous guidance.

Mastering Maya Basics to Intermediate Course
Delivered in London or OnlineFlexible Dates
£720